Redirect 301 /question/ https://website.com/support/
In other URLs the slug is used this way: https://website.com/question/test-question/
So the 301 redirection breaks that path. Thank you in advance for any advice on this.
]]>Redirect 301 /question/$ https://website.com/support/
]]>
Thanks for the quick reply and suggestions. In theory, this should work…but nothing is happening on the front end. Using this doesn’t do any redirection at all.
Do you know if perhaps this is something my host needs to allow(regex).
]]>Redirect
directive will not work. See: https://httpd.apache.org/docs/2.4/mod/mod_alias.html#redirect
Try using a rewrite rule, perhaps something like the following:
RewriteEngine On
RewriteRule ^/question/$ https://website.com/support/ [R=301,L]
There is no need for a <IfModule>
conditional since you are already using rewrite rules. But make sure this rule appears before the WordPress rewrite block!
If you still have redirection problems them please un-resolve your topic here in the right sidebar.
]]>Thank you.
]]>As stated, the one that you archived was for a different matter and should have been just moved over – not archived. Thank you.
]]>