我有一个 Symfony 应用程序mysite.com
和一个 WordPress 应用程序mysite.com/blog
:
server {
server_name mysite.com;
root /var/www/mysite/symfony/web;
location / {
try_files $uri /app.php$is_args$args;
}
location ~ ^/app\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
internal;
}
location /blog {
root /var/www/mysite/wordpress;
rewrite ^/blog/(.+)$ /$1 break;
try_files $uri $uri/ /blog/index.php$is_args$args;
location ~ \.php {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_split_path_info ^(?:\/blog\/)(.+\.php)(.*);
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
}
}
access_log /var/log/nginx/mysite.com-access.log;
error_log /var/log/nginx/mysite.com-error.log;
}
当我访问我的博客路由 ( mysite.com/blog
) 时,nginx 301 重定向以添加尾部斜杠 ( mysite.com/blog/
)。有什么方法可以避免此重定向?我注意到 Symfony 不会发生这种情况 -mysite.com/admin
运行正常。
我尝试添加rewrite ^/(.*)/$ /$1;
,但这只会导致重定向循环。
答案1
尾部斜杠是由 WordPress 添加的。您可以转到 WordPress Settings -> Permalinks
,选择自定义结构并删除尾部斜杠,以禁用它。