redirect website to /index.php
How do I redirect domain.com/ to domain.com/index.php ?
Description of the problem:
You have a website with the name domain.com - and you want to redirect all incomming urls that are going to domain.com/ to domain.com/index.phpSolution
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^$
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteRule ^$ http://domain.com/index.php [L,R=301]
Discuss questions and ideas regarding .htaccess rewrite rules at the enarion.net forum

