laurenclark
7/3/2014 - 10:02 PM

htaccess example

htaccess example

# REWRITES
# Canonical
RewriteEngine on
RewriteCond %{HTTP_HOST} ^site\.co.uk$ [NC]
RewriteRule ^(.*)$ http://www.site.co.uk/$1 [R=301,L] 
RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.php$ http://www.site.co.uk/$1 [R=301,L]

#prettyurls
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]

#index to root
RewriteCond %{THE_REQUEST} ^.*/index\.php 
RewriteRule ^(.*)index.php$ /$1 [R=301,L]