redirect to index.php and www code example
Example 1: redirect php
< ?php header("Location: http://www.redirect.to.url.com/"); ?>
Example 2: redirect from index.php
RewriteCond %{REQUEST_URI} /index.php
RewriteRule ^(.*)$ http://site.ru/ [R=301,L]
Example 3: htaccess route to index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /index.php [L,QSA]
Using Sub directory:
RewriteRule ^.*$ /mvc/index.php [L,QSA]