nginx 隐藏index.php 最有效的方法
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
这个文字直接加到nginx.htaccess 文件中 或者放到nginx.conf 文件中
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
这个文字直接加到nginx.htaccess 文件中 或者放到nginx.conf 文件中