|
I have restructured my website and had to redirect old pages to new ones.
Redirect 301 /services/ /services-madrid/
but I also have RewriteRule
RewriteRule ^services/translations/$ /services/translations.php
The problem I have is that when I want to display services/translations/ , Redirect 301 /services/ /services-madrid/ redirects the page to services-madrid/translations/$ and Rewrite Rule does not work
How can I fix this problem?
|