【发布时间】:2017-06-02 06:54:22
【问题描述】:
试图让我的 nginx 位置正则表达式触发结尾“/”是否存在。
到目前为止,它只在不存在时触发。请帮忙
location ~ ^/page\-[0-9]*$ {
root /sites/gibranali;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?pagination=$1 last;
}
}
【问题讨论】: