例如http://demo.com/hello 这条url,我想限制只有211.125.10.5这个IP可以访问,其他IP访问均返回403,该如何写.htaccess
PS1:
/hello不是一个目录,所以不可以用.htaccess基于目录的IP限制
PS2:
网站是基于WordPress的,现已有如下rewrite规则。
# BEGIN WordPress<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule># END WordPress
PS3:
刚才尝试了一种方案,但总是500
该方案被否决了,Location指令不能写在.htaccess文件中...
<Location /hello/ > Order Deny,Allow Deny from all Allow from 211.125.10.5</Location>
慕无忌1623718