[Zen Cart] Old links 404 errors
[Zen Cart] Old links 404 errors
All the old links in Google to my site are receiving 404 errors. Why are the old links not resolving on 301 or 302?
Re: [Zen Cart] Old links 404 errors
In order to redirect your old Rewritten URLs, you have to place your old Rewrite Rules into end of newly generated .htaccess file.
Re: [Zen Cart] Old links 404 errors
i was using Simple SEO before.
Based on the original htaccess file you are saying I should add the following rule
to the end of the new htaccess and the old URLS's will redirect to the new Magic SEO generated links?
Based on the original htaccess file you are saying I should add the following rule
Code: Select all
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
to the end of the new htaccess and the old URLS's will redirect to the new Magic SEO generated links?
Re: [Zen Cart] Old links 404 errors
Yes, but please also change this line in the beginning of this file:
to
Code: Select all
RewriteRule ^.*(\.php[0-9]{0,1}|\.htm|\.xml|\.css|\.js|\.jpg|\.gif|\.png)$ - [L]
to
Code: Select all
RewriteRule ^.*(\.htm|\.xml|\.css|\.js|\.jpg|\.gif|\.png)$ - [L]
Re: [Zen Cart] Old links 404 errors
From the Zencart features on your website it says the following:
"safe changing of URLs and re-directions from all native and rewritten ZenCart URLs"
why do i have to change the .htaccess file if this feature is already supported?
"safe changing of URLs and re-directions from all native and rewritten ZenCart URLs"
why do i have to change the .htaccess file if this feature is already supported?
Re: [Zen Cart] Old links 404 errors
You have to change the .htaccess file, because none knows what Rewrite Rules you have been using. If you place your old Rewrite Rules, MSU automatically recognize what to do.