安装了apache和php及mysql.打开网站需要输入index.php才能打开.
在apcahe中设置一下就可以直接默认打开 index.php.
比如我要打开localhost/index.php,直接输localhost,就可以,不用全输入.
做法如下: 找到apache下的配置文件httpd.conf,找到DirectoryIndex index.html,
在后面添上index.php
<IfModule mod_dir.c>
DirectoryIndex index.html
DirectoryIndex index.htm
DirectoryIndex index.php
DirectoryIndex index.php3
DirectoryIndex default.html
DirectoryIndex default.htm
</IfModule>

版权声明:本文为fgpgy原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/fgpgy/archive/2008/04/10/3000125.html