View Full Version : How to redirect url in .htaccess ?
DCteen
07-26-2016, 06:40 AM
Hello VB.org staff & coders
can someone please guide me, how do i redirect an url in .htaccess file
for example - i want to redirect url
http://www.example.com/search.php to http://www.example.net/search.php (same url just domain name is different)
*[i have searched query "how to redirect url in htaccess" before posting this thread but i didn't get anything useful]
Thank you :)
DivisionByZero
07-26-2016, 06:47 AM
need more information.
just that ONE page (search.php)? or EVERYTHING .com to .net ??
DCteen
07-26-2016, 06:53 AM
everything is done but few left i.e search.php / calander.php etc.. so i guess i have do them one by one ?
DivisionByZero
07-26-2016, 06:55 AM
not necessarily. if you're moving the whole SITE, then you can do it with two lines of code, but if it's only a select few pages, then yes, it will have to be done individually
DCteen
07-26-2016, 07:04 AM
whole SITE's url are redirecting to another already except few So, please guide me how do i do this ? The codes are ?
http://www.example.com/search.php to http://www.example.net/search.php (same url just domain name is different)
--------------- Added 1469524795 at 1469524795 ---------------
also let know the code / procedure how to redirect the whole site to another * (for my knowledge).
For now please let know how to redirect the mentioned URL .
Thank You
KevinL
07-26-2016, 10:32 AM
Whole site to another
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?old\.com
RewriteRule (.*) http://www.new.com/$1 [R=301,L]
DCteen
07-26-2016, 02:12 PM
Whole site to another
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?old\.com
RewriteRule (.*) http://www.new.com/$1 [R=301,L]
Thanks KevinL
Noted ! Can you please let me know how do i redirect particular (Single) link as mentioned above ?
KevinL
07-26-2016, 07:31 PM
Redirect 301 /oldfile.php http://example.net/newfile.php
That should work. But if you use the last one I wrote it should take care of all files and only need that one.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.