
04-25-2009, 02:28 AM
|
|
Member
|
|
Join Date: Nov 2008
Posts: 38
|
|
"Redirection Loop"
Quote:
Redirect Loop
Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked.
|
This is the error that I get when I try to load a perfectly normal website which has created a redirect in their cPanel to redirect to a directory on their website.
In the .htaccess:
Code:
RewriteEngine on
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName domain.com
AuthUserFile /home/username/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/username/public_html/_vti_pvt/service.grp
RewriteCond %{HTTP_HOST} ^domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteRule ^.*$ "http\:\/\/domain\.com\/cubecart\/index\.php" [R=301,L]
I have contacted cPanel and they say that this is a litespeed error rather than anything they can support/fix. Is this "RewriteRule" buggy in litespeed... and what can I do to fix this and get the redirect working?
Thank you very much!
|