nginx.htaccess 259 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 location /app/base/admin/ { try_files $uri $uri/ /app/base/admin/index.html; } location /app/base/ { try_files $uri $uri/ /app/base/index.html; } location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; } }