< 返回新闻公共列表
虚拟主机使PHP5.2提示No input file specified.
发布时间:2021-03-12 09:57:19
方法三:修改项目根目录的伪静态文件 .htaccess
打开.htaccess 在RewriteRule 后面的index.php后面添加一个“?”
| RewriteEngine on RewriteCond $1 !^(index.php|images|robots.txt) RewriteRule ^(.*)$ /index.php?/$1 [L] |
——————————–