nginx配置:
参考地址:http://www.cnblogs.com/grimm/p/5389970.html
- location / {
- try_files $uri $uri/ /index.php?$args;
- if (!-e $request_filename){
- rewrite ^/(.*)$ /index.php?r=$1 last;
- }
- root /usr/share/nginx/html;
- index index.php index.html index.htm;
- }
2022-11-30 22:02:44
nginx配置:
参考地址:http://www.cnblogs.com/grimm/p/5389970.html