1

私のhtaccessがこのような場合、私のウェブサイトyofnel.comは表示可能です

# END WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]

でも外したら

# END WordPress

もう機能しません。そして、私にこのエラーを与えます

Internal Server Error

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

Please contact the server administrator, webmaster@yofnel.com 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.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

助けてください。マルチサイトのセットアップに不満があります。

これは、エラー ログで見つけたエラーです。

[Tue May 14 11:36:38 2013] [alert] [client 67.159.36.27] /home/yofnel/public_html/.htaccess: RewriteEngine must be On or Off
4

2 に答える 2

3

1) マルチサイトの作成後にボックスに表示されたコード スニペットを wp-config.php に追加します。

2) 与えられたコード スニペットで htaccess を更新します。

3) Apache サーバー構成ファイルの httpd.conf の「LoadModule rewrite_module modules/mod_rewrite.so」の先頭から # 記号を削除し、ファイルを保存して、wamp サーバーを再起動します。

于 2014-07-18T12:25:43.317 に答える