views:

21

answers:

1

How to redirect it as follows?:

mysite.com -> mysite.com/index.php

mysite.com/index.php -> mysite.com/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)

A: 

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.

Gumbo
Thank you very much!
Sonny