View Single Post
  #7  
Old 10-04-2014, 10:01 PM
IntoRain's Avatar
IntoRain IntoRain is offline
Moderator
 
Join Date: Jul 2013
Location: Portugal
Posts: 461
Gender: Female
Credits: 22,631
IntoRain is on a distinguished road
Default

Did you get the file from a git repository? These should be the original contents I believe:

PHP Code:
RewriteEngine On
RewriteCond 
%{REQUEST_FILENAME} !-f
RewriteCond 
%{REQUEST_FILENAME} !-d
RewriteCond 
%{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule http://%1%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_URI} !\.(js|css|gif|jpg|png|ico)$ [NC]
RewriteRule ^(.*)$ index.php [QSA,L]
RewriteRule ^get/([0-9]+).gif$ /click/siggy/$[L
Then you can add those lines from that post
__________________


asp.net stole my soul.
Reply With Quote