I want to redirect home page alone. But not the sub links. I tried with the following code, but it not works.
RewriteCond %{REQUEST_URI} ^/[/]?
RewriteCond %{REQUEST_URI} !^/+[/]?
RewriteRule (.*) http://www.newdomain.com/ [R=301,L]
So my requirement is,
When user access : http://test.site.co.uk
then should redirected to http://newsite.co.uk
When user access : http://test.site.co.uk/mypage
then should redirected to http://newsite.co.uk/mypage
Shorter Version
You can use following rewrite rule :-
That (/{0,1}) part is for matching both example.com and example.com/ (but nothing esle) – if you do not wish to match example.com/ remove that part from both rows.