yii2相关
phpstudy nginx yii2:伪静态:
location / { index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } #autoindex on; }
或
location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; } }
posted on 2024-11-09 13:42 andydaopeng 阅读(0) 评论(0) 编辑 收藏 举报