Hi All,
Rather than starting a new thread I have posted the question here and hopefully someone can help as it is related to above.
I have updated my .htaccess as described above.
------------------------------------------------------------------------------------------------------------
# 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
# Prevent Direct Access to files
<FilesMatch "\.(tpl|ini|log)">
Order deny,allow
Deny from all
</FilesMatch>
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
--------------------------------------------------------------------------------
Now please open this link:
http://www.naturalskin.co.uk/face-care
And you will find that when you do mouse over on Category or Sub Category or Products then www. is missing however when I click on it, the browse url does show www in the url.
Similarly the home page logo and Home all display
http://naturalskin.co.uk/index.php?route=common/home
when I expect that it would show
www.naturalskin.co.uk
Any help/guidance would be much appreciated. Thanks.