Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

halillusion/php_basicplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Basicplate - A basic php boilerplate

Description

A basic php boilerplate. It contains everything that should be in a new structure to save time. You can quickly build your applications on it.

Requirements

  • Apache >= 2.4.5 or Nginx >= 1.8
  • PHP >= 7.1
  • MySQL >= 5.6

Documentation

This documentation has been created to give you a quick start.

Model

(soon)

View

(soon)

Controller

(soon)

Tricks

Server Configurations (Apache)

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.+)$ index.php/$1 [L]

Server Configurations (Nginx)

location / {
	if (!-e $request_filename){
		rewrite ^(.+)$ /index.php/$1 break;
	}
}

Routing

(soon)

About

This project has been remodeled in the KalipsoCollective/KalipsoNext repo. Please use it.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published