Browse Source

Add .htaccess

pull/9/head
Toby Zerner 9 years ago
parent
commit
f60c9d92ce
  1. 10
      .htaccess

10
.htaccess

@ -0,0 +1,10 @@
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^api(.*)$ api.php [QSA,L]
RewriteRule ^admin(.*)$ admin.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
Loading…
Cancel
Save