mac下mamp使用fastadmin伪静态设置
第3处内容:
1 2 3 4 5 |
location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; } } |
一个靠谱的人
第3处内容:
1 2 3 4 5 |
location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; } } |