nginx 如何把 127.0.0.1/y 目录的访问 重写到 index.php 急需!

日期:2022-02-09 12:15:23 人气:1

nginx 如何把 127.0.0.1/y 目录的访问 重写到 index.php 急需!

location /y/ {
rewrite ^/(.*)$ /index.php permanent;
}
用rewrite来实现
    A+
热门评论