我需要我的网站内阻止访问特定的网址。 但我不能确定如何,并在理解的htaccess的复杂可怕。 ^^
我需要阻止正在访问这些类型的网址,例如用于访问。
- http://mydomain.com/katherine-blouse-on-fire
- http://mydomain.com/antique-for-preservation
- http://mydomain.com/?type=extended&name=stackoverflow
我目前的htaccess的代码
DirectoryIndex index.html index.php
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
</IfModule>
<Files 403.shtml>
order allow,deny
allow from all
</Files>
deny from xx.xx.xx.xx
deny from xx.xx.xx.xx
我应该进入htaccess的阻止这些访问? 以什么顺序? 我当前的代码之前还是之后?