我是 Nginx 的初学者,我有一个关于特定 URL 重写的问题。
我希望“http://myserver.fr/context/[xxxxxxxxxxx]/synchronize.php”重定向到 /space/www/synchronize.php
我想要另一个 URL 类型“http://myserver.php/context/[xxxxxxxx]”重定向到 /space/www/index.php
所以我认为正确的 conf Nginx 是:
location /context/ {
alias /space/www/;
rewrite ^(.*).synchronize.php /synchronize.php last;
rewrite ^/(.*)$ /index.php last;
}
由于我是 Nginx 的初学者,你能告诉我我的想法是否合乎逻辑吗?非常感谢。