可能重复:
Site saves index.php file rather than opening it into localserver WAMP
我刚刚在电脑上安装了WAMP。我将一个网站移到www目录中。当我转到我网站的index.php
时,我会看到一个窗口,要求我下载index.php
。
目录是:c:/wamp/www/my website/index.php
有谁能告诉我如何解决这个问题,以便我可以查看网站而不是下载它?
谢谢!
答案 0 :(得分:3)
您必须通过index.php
或http://127.0.0.1
等域名输入http://localhost
文件,而不是通过c:\file.php
等文件补丁输入。
当您在xx
端口http://127.0.0.1:xx
上运行WAMP服务器时,链接到WAMP的www文件夹,如c:/wamp/www/
。默认情况下,WAMP使用80端口,因此您只能访问http://127.0.0.1
或http://localhost
如果您按域访问您的网站并开始下载,请检查您的httpd.conf
文件AddType application/x-httpd-php-source .php
。
还有一条建议,在将网站文件夹命名为
时不要使用空格Web服务器具有不同的处理(编码)空间的方式 字符。这可能会导致其他人出现问题 链接到您的网站。他们可能会编码空格字符 错误,导致链接断开。