1

サイトを Apache から Nginx に移行しました。問題は、パーマリンクの URL に余分な index.php が含まれていることです。これがワードプレスの問題なのか、構成の問題なのかを判断できません。

私の投稿が元のリンクとして表示される例: http://hs.com/2012/04/30/a-new-question/http://hs.com/ * index.php/ *2012としてリンクされています。 /04/30/a-new-question/

nginx 互換プラグインを試しました。また、プラグインの有無にかかわらずカスタム構造オプションを試しましたが、何が起こっているのか理解できません。Wordpress によると、カスタム パーマリンク構造は保存されますが、それでもサイト内のすべてのリンクが正しく表示されません。

これがサイトのnginx構成です。

server {
server_name harshasagar.com www.harshasagar.com;
access_log /srv/www/harshasagar.com/logs/access.log;
error_log /srv/www/harshasagar.com/logs/error.log;
root /srv/www/harshasagar.com/public_html;

if ($host ~* www\.(.*)) {
   set $host_without_www $1;
   rewrite ^(.*)$ http://$host_without_www$1 permanent; # $1 contains '/foo', not 'www.mydomain.com/foo'
}

location / {
    index index.html index.htm index.php;
    try_files $uri $uri/ /index.php?q=$uri&$args;
}

location ~ \.php$ {
    try_files $uri =404;
    include fastcgi_params;
    fastcgi_pass  127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /srv/www/harshasagar.com/public_html$fastcgi_script_name;
}
4

1 に答える 1

0

行を置き換えます:

try_files $uri $uri/ /index.php?q=$uri&$args;

try_files $uri $uri/ /index.php?$args;

そして、このプラグインをインストールします-http ://wordpress.org/extend/plugins/nginx-helper/

その後問題が発生した場合はお知らせください。

于 2012-09-29T17:27:13.827 に答える