0

こんにちは、Apache エラーログファイルに次のエラーが表示されます...そして 500 内部サーバーエラーは、これを解決するのに役立ちます..

[Wed Mar 13 16:33:13 2013] [alert] [client 127.0.0.1] C:/wamp/www/phpwork/.htaccess: </files> without matching <files> section, referer: http://localhost/

私の .htaccess ファイルは

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule (.*\.(png|gif|jpg|jpeg|js|css|swf))$ webroot/img_handler.php?arg=$1 [L] 
   RewriteRule    ^$ webroot/    [L]
   RewriteRule    (.*) webroot/$1 [L]
</IfModule>

# disable directory browsing -IMPORTANT, do NOT remove.
Options -Indexes

# protect the htaccess file
<files .htaccess>
order allow,deny
deny from all
</files>

# disable the server signature
ServerSignature Off


# protect php.ini
#<files *.ini>
order allow,deny
deny from all
</files>
4

1 に答える 1

0
# protect php.ini
#<files *.ini>
order allow,deny
deny from all
</files>

ここで「ファイル」ディレクティブをコメントしました

ファイルセクションをこれと同じにするためにコメントを削除してください:

<files *.ini>
order allow,deny
deny from all
</files>
于 2013-03-13T13:00:00.350 に答える