sudhakaranR87
sudhakaranR87

Reputation: 210

How to Redirect one Page url to another

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]

Upvotes: 2

Views: 201

Answers (1)

Amit Verma
Amit Verma

Reputation: 41249

the easiest way to redirect this url is RedirectMatch

RedirectMatch ^/abc/wp/?$ /abc/blog

Upvotes: 1

Related Questions