mhweiner/atomi/master/.htaccess - Htaccess File

mhweiner/atomi/master/.htaccess

Options -Indexes
Options +FollowSymLinks
Options -MultiViews

RewriteEngine on

###########################################################################
### If file doesn't exist (or home dir), redirect to Atomi's start file ###
###########################################################################

#first line should match your doc root, usually /
RewriteCond %{REQUEST_URI} ^/$
RewriteRule .* atomi/start.php/$1 [QSA,L]

# Any request for file which doesn't exist gets routed through start.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) atomi/start.php/$1 [QSA,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache