atelierspierrot/mvc-fundamental/dev/demo/.htaccess - Htaccess File

atelierspierrot/mvc-fundamental/dev/demo/.htaccess

##
## @see <http://github.com/atelierspierrot/mvc-fundamental>.
##

DirectoryIndex index.php index.html

RewriteEngine On
#RewriteBase /

# skip all this if the file or the dir exists
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# rebuild `xxx.php/myreq` to `xxx.php?myreq`
RewriteRule ^([a-zA-Z0-9-_]+).php/(.*)$ $1.php?$2 [QSA,L]

# `index.php` will handle all requests
RewriteRule ^(.*)$ index.php?$1 [QSA,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache