I just bought a shared hosting account from bluehost.com & they gave me a temporary URL like http://ipaddress/~username/
. The problem is that I get redirect loops when I try to access my URLs. Everything is working fine on my proper URL.
Proper URL = Accessing from the domain.
If you have any solution to this problem, please specify it will be a great help.
I have the following rewrite rules in my .htaccess files.
redirect www to non-www version
RewriteCond %{HTTP_HOST} www\.mydomain\.com$ [NC]
RewriteRule ^(.*)/?$ http://mydomain.com/$1 [L,R=301]
rewrite the domain.com/index.php to / (base-directory)
RewriteCond %{THE_REQUEST} /index\.php
RewriteRule ^(.*?)index\.php$ /$1 [R=301,NE,L]
rewrite all requests to index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php?url=$1 [QSA,NE,L]