How to Redirect one Page url to another

2020-04-14 16:11发布

I want to redirect one page to another page which is something like below..

http://dev.****.in:82/abc/wp redirect to http://dev.****.in:82/abc/blog

I have tried the below code on .htaccess but no luck.

RewriteEngine On

RewriteCond %{HTTP_HOST} ^dev\.xxx\.in\/:\/82\/abc$

RewriteRule ^wp$ "http\:\/\/dev\.xxx\.in\/:\/82\/abc\/blog" [R=301,L]

1条回答
何必那么认真
2楼-- · 2020-04-14 16:35

the easiest way to redirect this url is RedirectMatch

RedirectMatch ^/abc/wp/?$ /abc/blog
查看更多
登录 后发表回答