Skip to content
WJunction - Webmaster Forum

How to redirect Wordpress domain

Status
Not open for further replies.

1 comment

Hello Devils,

If you are using Cpanel then there is a redirect option you just have to place a url where to redirect and you are good to go.. :)

or if you know a little bit about .htaccess where this file is located then you can add a better 301 redirect rule there!

Code:
# BEGIN WordPress<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
[B]RewriteRule ^reviews/(.*)$ http://example.com/$1 [R=301,L][/B]
RewriteRule . /index.php [L]
</IfModule>


# END WordPress

Good Luck buddy! :cough:
 
Status
Not open for further replies.

About the author

D
Active Member · Joined
266
Messages
43
Reactions
28
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom