wampserver 重装中遇到的两个问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wampserver 重装中遇到的两个问题相关的知识,希望对你有一定的参考价值。
问题1
安装后可以访问localhost,但是不能访问wamp下面创建的文件夹。如www
解决方案 index.php 文件编辑器打开
找到
while (($file = readdir($handle))!==false)
{
if (is_dir($file) && !in_array($file,$projectsListIgnore))
{
//[modif oto] Ajout éventuel de http:// pour éviter le niveau localhost dans les url
$projectContents .= ‘<li><a href="‘.($suppress_localhost ? ‘http://‘ : ‘‘).$file.‘">‘.$file.‘</a></li>‘;
}
}
其中 $suppress_localhost ? ‘http://‘ : ‘‘ 修改为$suppress_localhost ? ‘http://localhost/‘ : ‘‘ 注意:localhost后面有个/
问题2
能够访问文件夹了,但是图标没有。对于有强迫症的我很不舒服!
解决方案。 编辑器打开 C:\\wamp\\bin\\apache\\apache2.4.9\\conf\\extra\\httpd-autoindex.conf
修改
Alias /icons/ "c:/Apache24/icons/"
<Directory "c:/Apache24/icons">
Options Indexes MultiViews
AllowOverride None
Require all granted
</Directory>
为
Alias /icons/ "icons/"
<Directory "icons">
Options Indexes MultiViews
AllowOverride None
Require all granted
</Directory>
---end
以上是关于wampserver 重装中遇到的两个问题的主要内容,如果未能解决你的问题,请参考以下文章
phpwamp和wampserver有啥关系,为啥名字都带wamp这几个字母,两者有区别吗?我应该用哪个?
wampserver能正常启动和连接localhost,但不能打开自己的php项目,怎么解决??