But I've come across a hitch that I didn't think would be a problem anyway.
If a URL has a + in it, like "BATTERY-+-CHARGER", it doesn't like it.
Yet the live site that hasn't been updated yet, is fine with it.
This is the htaccess, which I suspect is the cause of this.
Code: Select all
# old url style
RewriteRule ^product/([0-9]+)/([^/]+)/([0-9]+)/([^/]+)/([0-9]+)/([^/]+) /index.php?page=product&c=$1&cname=$2&s=$3&sname=$4&product=$5&h=$6 [QSA]
# new url style
RewriteRule ^product/([^/]+)/([^/]+)/([0-9]+)/([^/]+) /index.php?page=product&cname=$1&sname=$2&product=$3&h=$4 [QSA]
page.The page isn't redirecting properly