我目前在使用WAMP / Google Chrome时出现问题。在我的wamp服务器上(在Windows上运行)我启用了httpd-vhosts.conf文件并修改了我的HOSTS文件以接受不同的“服务器”名称,即。 127.0.0.1 mysite
并设置我的vhosts文件说:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "D:/Documents/Websites/mysite"
ServerName mysite
ErrorLog "logs/your_own-error.log"
CustomLog "logs/your_own-access.log" common
<directory "D:/Documents/Websites/mysite">
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</directory>
</VirtualHost>
当我查看 about.php , contact.php 等网页时,这种方式正常,但当我尝试查看 index.php 文件,chrome下载文件(它在rockmelt中也是如此 - 我假设它们都基于chrome)。它在firefox,opera,safari和IE9中运行良好,所以它不是真正的php文件本身(如果我将 index.php 重命名为其他任何它在chrome中工作正常)。
我甚至将index.php文件的内容更改为:
<?php echo "test"; ?>
但Chrome仍会下载该文件。
由于
答案 0 :(得分:0)
很奇怪,虽然我认为这是一个服务器问题,但可能是由一些奇怪的扩展引起的。尝试禁用所有扩展程序,看看是否仍有问题。
如果仍有问题,可能是Apache配置问题。