Padgoi Posted July 27, 2007 Share Posted July 27, 2007 I want my homepage to redirect to a folder named Test. So when someone goes to my index.html page, it should automatically redirect them to /Test/new.html. I don't want to use a meta redirect. Can anyone please help me, I'm not sure the correct .htaccess URL rewrite to redirect to this, It's something like this: RewriteEngine on RewriteRule ^index\.html$ new.html But instead of redirecting to new.html, I want it to redirect to /Test/new.html. Any help please? Quote Link to comment Share on other sites More sharing options...
btherl Posted July 27, 2007 Share Posted July 27, 2007 Can you try this: RewriteEngine on RewriteRule ^index\.html$ Test/new.html Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.