Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionHow to redirect it as follows?:
mysite.com -> mysite.com/index.php
mysite.com/index.php -> mysite.co开发者_C百科m/index.php
mysite.com/index -> mysite.com/index.php
mysite.com/main.php -> mysite.com/index.php
mysite.com/main -> mysite.com/index.php
Same with .html extension (ie. mysite.com/index.html -> mysite.com/index.php)
Try these rules:
RewriteRule ^/$ /index.php
RewriteRule ^/(main|index)(\.(php|html))?$ /index.php
If you want to use these rules in the .htaccess file in the document root directory, remove the leading slash from the patterns.
精彩评论