Redirect htaccess rule
I wish to redirect a website link onto another.
my htaccess rule up to now is
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
# END WordPress
RewriteRule ^/the-terminal/demo/
http://example.com/wordpress/project-overview/ [R,L]
I wish to redirect the link http://example.com/wordpress/the-terminal/demo
to http://example.com/wordpress/project-overview
Kindly provide me a solution. You will be a lifesaver.
Thanks
No comments:
Post a Comment