尝试在我的 .htaccess 中添加选项 Allow,Deny 时遇到一个小问题
<Limit GET POST PUT>
order deny,allow
deny from all
allow from 192.168.10.100
allow from 192.168.10.200
</Limit>
Options All -Indexes
<IfModule mod_php5.c>
php_flag engine 0
</IfModule>
# AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI
<IfModule mod_rewrite.c>
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## never rewrite for existing files
RewriteCond %{REQUEST_FILENAME} !-f
############################################
## rewrite everything else to index.php
RewriteRule .* ../get.php [L]
</IfModule>
我无法进入这个.htaccess所在的文件夹,IP地址是正确的,如果我只保留
<Limit GET POST PUT>
order deny,allow
deny from all
allow from 192.168.10.100
allow from 192.168.10.200
</Limit>
我可以进入文件夹。但如果我放在一起就不再工作了。
任何帮助表示赞赏。