Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 260 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 260 Bytes

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;