当我导航到我的网站(例如 www.mydomain.com)时,浏览器会打开一个弹出窗口来下载文件。
在我的 httpdocs 文件夹中,我有: - index.html - index.php () - 我没有 .htaccess 文件
检查浏览器: - www.mydomain.com/index.html -> 工作正常 - www.mydomain.com/index.php -> 工作错误(它下载 index.php 文件) - www.mydomain.com -> 它工作错误(它下载带有 index.php 内容的“descarga”文件)。
PHP 已安装,当我运行php -v
命令时,它说我使用的是 PHP 5.3
我在同一台服务器上有其他域可以正常使用 php 文件,因此 AddHandler 或 LoadModule 应该不是问题,因为 PHP 是我所有域的常量。
这是我的 php.conf,看起来一切都是正确的:
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp5.so
</IfModule>
<IfModule worker.c>
LoadModule php5_module modules/libphp5-zts.so
</IfModule>
#
# Cause the PHP interpreter to handle files with a .php extension.
#
AddHandler php5-script .php
AddType text/html .php
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php
我应该如何尝试成功导航到我的域?