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?
Thanks for the response! That kind of works but it shows the content of /cubecart whilst staying on the main domain which breaks some of the images etc.
How can I make it fully redirect the URL to /cubecart?