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.
Back
Top