Hi,
I am using a rather old web application that offers no longer support, that (should) works fine, but ..
the browser (IE9 and FF10) reports an 'endless loop' and refuses to load the root file. The .htacces that came with the install files is like:
/////
# BEGIN app
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /loader.php [L]
</IfModule>
# END app
# BEGIN noWWW
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.mydomain\.com$ [NC]
RewriteRule ^(.*)$ [
mydomain.com...] [R=301,L]
# END noWWW
//////
Can someone tell me what should be changed to make this .htaccess work?
Thanks a lot
JohN