Files
zoff/.htaccess
OptimusCrime bbd3b214d1 Some changes
2014-10-16 19:49:23 +02:00

21 lines
474 B
ApacheConf
Executable File

<<<<<<< HEAD
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !(/$|\.)
RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]
=======
# Mod rewrite
RewriteEngine On
RewriteBase /Zoff
# Route all requests to index.php unless real file or folder
>>>>>>> Some changes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /(.*)$ /$1 [L]