Please help me in creating correct instructions for mod_rewrite. It seems to be very difficult.
I need exactly the following:
1. Redirect from www.site.com to site.com.
www.site.com/hello ==> site.com/hello
www.site.com/abc/def ==> site.com/abc/def
etc., and then other rules should be applied.
2. Direct access (no rewrite) to some specified files and folders (such as robots.txt, images/, etc.)
Maybe
RewriteCond %{REQUEST_URI} !^/(robots.txt|favicon.ico|images|documents|~.\*)
Am I right? So, URLs like
site.com/robots.txt ==> site.com/robots.txt
site.com/documents/file1.pdf ==> site.com/documents/file1.pdf
should remain as is and shouldn't be rewritten.
3. Another transformation:
site.com/index.php?anythinghere ==> site.com/a/index.php?anythinghere
4. But if we type URLs site.com and site.com/ Apache should call index.php in the root folder (site.com/index.php)
site.com ==> site.com/index.php
site.com/ ==> site.com/index.php
5. I have MVC script, and if we type the following URLs:
1. site.com/controller or site.com/controller/ or site.com/controller//
2. site.com/controller/function or site.com/controller/function/
3. site.com/controller/function/parameter or site.com/controller/function/param1/param2/param3
and if controller is one of predefined words in the list, say, "index", "news", "contacts" (maybe it will be expanded up to few hundreds of words), then we should call index.php, rewriting URLs the following way:
site.com/controller ==> site.com/index.php?q=controller
site.com/controller/ ==> site.com/index.php?q=controller/
site.com/controller// ==> site.com/index.php?q=controller//
site.com/controller/function ==> site.com/index.php?q=controller/function
site.com/controller/function/ ==> site.com/index.php?q=controller/function/
site.com/controller/function/parameter ==> site.com/index.php?q=controller/function/parameter
site.com/controller/function/param1/param2/param3 ==> site.com/index.php?q=controller/function/param1/param2/param3
6. And, finally, if all previous rules weren't applied, we should rewrite
site.com/anythinghere ==> site.com/a/index.php?anythinghere
Hope apache doesn't use mod_rewrite recursively, or I will have huge troubles with different index.php's.
I understand that it's not easy, but if you can help in creating rules for even one item, that would be great.
Thanks in advance!