0

次のhtaccessコードを使用しurl rewriteていましたが、機能していました。

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
#RewriteBase /

# If the request is for a valid directory
#RewriteCond %{REQUEST_FILENAME} !-d
# If the request is for a valid file
RewriteCond %{REQUEST_FILENAME} -f
# If the request is for a valid link
RewriteCond %{REQUEST_FILENAME} !-l
# do not do anything
RewriteRule ^ - [L]


# forward /john to user/profile.php?name=john
RewriteRule ^(.+)$ user/profile.php?username=$1 [L,QSA,NC]

しかし、最新のWAMP2サーバーにアップグレードすると、以下のエラー メッセージが表示されるようになりました。

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

このエラーが発生した理由と修正方法を誰かが説明してください。ありがとうございました。

4

2 に答える 2

0

私は同じ問題に直面しましたがhttpd.conf、mod_rewrite で Hashed out がオフになっていることを発見したので、行頭の # を削除し、すべてのサービスを再起動するとうまくいきました!

于 2014-03-30T19:05:19.827 に答える
0

mod_rewrite は実際にはサーバー構成ファイルでオフにされていましたが、オンにしてサーバーを再起動すると、再び機能し始めました。

于 2012-12-10T22:55:03.070 に答える