0

VPS(デジタルオーシャン、centOS)でnginxを実行すると問題が発生します

それが示している:

nginx: [emerg] unknown directive "[alert" in /usr/local/nginx/conf/wordpress.conf:14

wordpress.conf:

location / {
if (-f $request_filename/index.html){
                rewrite (.*) $1/index.html break;
        }
if (-f $request_filename/index.php){
                rewrite (.*) $1/index.php;
        }
if (!-f $request_filename){
                rewrite (.*) /index.php;
        }
}

[alert type="notice" close="true"]
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

[/alert]

何が問題ですか?

4

1 に答える 1

0

解決しました。を削除

[alert type="notice" close="true"] rewrite /wp-admin$ $scheme://$host$uri/ permanent;

しかし、理由はわかりません。

于 2014-10-29T14:27:22.503 に答える