Come up against an issue on my thesis website prosportswatches.co.uk.
I've installed wordpress to support a blog on prosportswatches.co.uk/blog but I'm having some issues with redirection. I've narrowed the issue down to the .htaccess file which I'm using to remove .php and deal with the canonical issue. When I remove it wordpress works as expected but when its in place I get a browser message advising me "The page isn't redirecting properly".
Here's the content of the .htaccess file:
RewriteEngine on
Options +FollowSymLinks
RewriteBase /
RewriteCond %{HTTP_HOST} ^prosportswatches.co.uk$ [NC]
RewriteRule (.*) http://www.prosportswatches.co.uk/$1 [R=301,L]
## JSHOP VERSION 2 WITH .php REMOVED REWRITE RULES ##
Options +SymlinksIfOwnerMatch +MultiViews
RewriteEngine on
RewriteBase /
RewriteRule ^(.*).php/(.*) $1.php?$2
I don't want to loose the functionality so has anyone got any ideas ?


Reply With Quote
Bookmarks