我真的很难理解并实现 nginx 中的一个非常简单的操作。
我正在尝试重写以下页面:
http://test.domain.com/prova_pagina.php
到
http://test.domain.com/p/
我在 nginx.conf 中有以下内容:
server {
listen 82;
root /dir;
include /nginx/conf/mod_pagespeed.conf;
include /nginx/conf/expiry_directives.conf;
server_name test.domain.com;
index theindex.php;
location / {
rewrite ^/d/ /prova_pagina.php last;
}
location ~ \.php$ {
include /nginx/conf/fastcgi_params;
fastcgi_index theindex.php;
if (-f $request_filename) {
fastcgi_pass 127.0.0.1:9000;
}
}
}
它确实有效,但问题是所有外部链接(如 css 和 js)都会在域名后面附加 /d/。
有什么帮助吗?有没有什么简单的教程可以让我了解如何正确实现这一点?
谢谢你的帮助。
答案1
尝试一下:
# serving normal pages
location / {
try_files $uri $uri/ /index.php?$args;
}
# the page to be redirected
location /prova_pagina.php {
rewrite ^ http://test.domain.com/p/;
}