I am totally new to PHP and am fumbling my way through modding my site @ http://www.tilestiles.co.uk/newstore/ the one thing that is really driving me nuts at the moment is the SEO friendly urls.
I have the .htaccess in the root of the site and the url seems to rewrite but when i click on the link i get a 404 page not found.
Please prevent a breakdown, my .htaccess is as follows
Code: Select all
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com
Options +FollowSymlinks
RewriteEngine On
RewriteBase /newstore
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]