問題があります。.htaccess を使用して Web サイトの管理パネルを保護したいのですが、CGI スクリプトです。
WebBrowser からは次のようになります: http://mysite.com/?op=adminpanel
もちろん /cgi-bin/index.cgi?op=adminpanel
私は試してみました:
<files index.cgi?op=adminpanel>
order deny,allow
deny from all
allow from my.ip.address
</files>
動作し<files index.cgi></files>
ない
今私はでテストしています:
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !( my.IP)
RewriteCond %{QUERY_STRING} !(?op=adminpanel)
RewriteRule index.cgi - [F]
どんな助けでも大歓迎です