.htaccess - Redirect directory to the same directory but in a subfolder using htaccess -
lets take following example:
redirect 301 /crowdfund/ http://website.com/crowdfund/browse/
currently creating redirect in format:
what doing wrong here?
thanks!
use redirectmatch
exact regex match instead:
redirectmatch 301 ^/crowdfund/?$ http://website.com/crowdfund/browse/
in rule /crowdfund/
being matched before , after redirect.
Comments
Post a Comment