Skip to content

bubu-framework/router

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Router library

PLEASE

In your root directory put:

  • For Apache server:
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
  • For Nginx server:
try_files $uri /index.php;