Add a basic PHP server-generator example

This commit is contained in:
Laurent Sarrazin
2014-10-30 22:13:27 +01:00
parent 88692ec42d
commit 06332e5dce
10 changed files with 264 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]
</IfModule>