Installed a little script on two of my sites that asked me to create an htaccess file as follows:
The first site, www.dragonflyfringe.com now shows 404 errors when it tries to load html pages. Php pages seem fine.Code:RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !\.html?$ RewriteCond %{REQUEST_FILENAME} !\.php$ [OR] RewriteCond %{REQUEST_FILENAME} admin.php$ [OR] RewriteCond %{REQUEST_FILENAME} install.php$ [OR] RewriteCond %{REQUEST_FILENAME} /$ [OR] RewriteCond %{REQUEST_FILENAME} addrecords.php$ RewriteRule ^.*$ - [S=1] RewriteRule . cloak/loader.php [L]
The second site www.rossis-pizza.com doesn't even load at all, says it's looking for /cloak/loader.php.
I know this has to do with that last rule ( RewriteRule . cloak/loader.php [L] ) and possibly the others but I'm unsure how to undo the disaster!
Could somebody with some htaccess savv write me an undo-er file or even just point me to a page that would teach me? Time's of the essence because both sites are basically MIA right now. Help!!


Reply With Quote
Bookmarks