Htaccess un-rewrite easy money

Status
Not open for further replies.

SpectroMX5

Junior Member
Joined
Feb 8, 2008
Messages
158
Reaction score
210
Installed a little script that asked me to create an htaccess file as follows:

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]

But it effed everything up. Only server sided pages (php) seem to work. All html pages show up as not found.

Bottom line, I just don't have time to learn the syntax so I'm willing to paypal somebody who can un-rewrite my htaccess for me or just fix whatever the hell the problem is. If you think you're up to it just PM me with your instant messenger contact and I'll provide the details.

Also I tried uploading a blank htaccess, to no avail.
 
Add:
Options +FollowSymLinks
Code:
Options +FollowSymLinks
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]
 
Status
Not open for further replies.
This thread has been auto closed due to the forum's thread age policy. Read more.
Back
Top