OpenCart Redirect 301 in htaccess

1
Hoi,

Ik heb een vraag ik heb in mijn htaccess een aantal 301 redirects gemaakt

Code: Selecteer alles

Redirect 301 /GUCCI/Gucci-by-Gucci-Pour-Homme https://www.goedkoopparfum.nl/gucci-by-gucci-pour-homme-edt-spray
Als ik naar de oude url ga wordt de redirect niet uitgevoerd maar kom ik op deze URL terecht:
https://www.domein.nl/gucci/gucci-by-gu ... Pour-Homme (domein is even fake url)

Weet iemand waarom mijn redirect niet uitgevoerd wordt. Ik heb de 301 redirects bovenaan in de htaccess staan en daarna pas de url rewrites.

Hoor het graag even
Martijn Moes
https://www.intermoes.nl/
https://www.goedkoopparfum.nl/

Re: OpenCart Redirect 301 in htaccess

2
Double-check the syntax of your 301 redirect rule. Ensure you're using the correct format:

Code: Selecteer alles

Redirect 301 [old-url] [new-url]
. Make sure there are no typos or missing spaces.
While URL rewrites should not directly affect 301 redirects, if there are any rewrites that are rewriting the old URL to a different URL before the 301 redirect takes effect, it can break the redirect. Check the URL rewrites and ensure they don't interfere with the redirect.