How to Redirect one Page url to another

后端 未结 1 921
野的像风
野的像风 2021-01-22 09:37

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

相关标签:
1条回答
  • 2021-01-22 09:59

    the easiest way to redirect this url is RedirectMatch

    RedirectMatch ^/abc/wp/?$ /abc/blog
    
    0 讨论(0)
提交回复
热议问题