Recent Topics

1 Jun 23, 2005 22:37    

How mask Static Pages ?

I have supprimed all links for go on stat page but if you write link directly you can enter on this page how turn off this page ?

2 Jun 24, 2005 03:05

Try adding this to your .htaccess file to prevent the stats page from displaying

RewriteEngine On
#Do not allow access to the stats page
RewriteCond %{QUERY_STRING} "disp=stats"
RewriteRule .* - [F]

Or use this to only allow the stats page when your site is the referer (when you link to it).

RewriteEngine On
#Do not allow direct access to the stats page
RewriteCond %{HTTP_REFERER} "!^http://www.yoursite.com/.*$" [NC]
RewriteCond %{QUERY_STRING} "disp=stats"
RewriteRule .* - [F]

3 Jun 25, 2005 17:07

that working fine.

I have and big problem I have flooding on my web site by

66.250.69.6
66.250.69.7

do you have idea for stop. like cops internet ?

4 Jun 25, 2005 17:19

Try adding this to your .htaccess file:

#Ban known spammer
deny from 66.250.69.6
deny from 66.250.69.7 

5 Jun 25, 2005 17:22

thx for your fastly help :)

this code work fine thanks


RewriteEngine On 
#Do not allow access to the stats page 
RewriteCond %{QUERY_STRING} "disp=stats" 
RewriteRule .* - [G]

http://jessey.net/htaccess.txt

but this don't work can you help me :(


# interdit les liens extérieurs

# domaine ou pays
RewriteCond %{HTTP_REFERER} ^http://[a-z.-]+.nl/.*$ [NC,OR]
# nom de domaine
RewriteCond %{HTTP_REFERER} ^http://(www\.)?programist.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?dezigner.ru.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?ofena.com.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?sapo.pt.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?zeroweb.org.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?q.fm.*$ [NC,OR]
# mot dans nom de domaine interdit
RewriteCond %{HTTP_REFERER} ^http://(www\.)?phentermine.*$ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?xanax.*$ [NC]
RewriteRule \.*$ http://spam.abuse.net/ [R]

I have founded problems thx


Form is loading...