问题是:我访问localhost/d/index不起作用,改成localhost?d=index页面就可以访问,请问这是怎么回事??(我没有用框架,自己封装)
我根据度娘的提示,做了一下修改都不起作用
php.ini去掉了前面的;,cgi.fix_pathinfo=1
Apache配置文件开启了 LoadModule rewrite_module modules/mod_rewrite.so
且修改成下面两种,重启后,都不起作用:
一种:
DocumentRoot "F:\phpStudy\WWW\web"
Options FollowSymLinks
AllowOverride None
Order allow,deny
Deny from all
AcceptPathInfo On
第二种:
DocumentRoot "F:\phpStudy\WWW\web"
<Directory />
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Deny from all
Require all granted
</Directory>