Nginx 隐藏入口文件 index.php

来源:互联网 发布:淘宝上的胆前级哪个好 编辑:程序博客网 时间:2024/05/17 21:59

添加重写规则

Nginx

location / {    index  index.html index.htm index.php;    #autoindex  on;    if (!-e $request_filename) {        rewrite ^/(.*)$ /index.php/$1;    }}
原创粉丝点击