arkarwmh/RESTINPHP/master/.htaccess - Htaccess File

arkarwmh/RESTINPHP/master/.htaccess

<IfModule mod_rewrite.c>
DirectoryIndex index.php
Options +FollowSymLinks
IndexIgnore */*

RewriteEngine On
RewriteBase /myproject/

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -l
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php/$1 [NC,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache