【发布时间】:2014-06-07 22:10:44
【问题描述】:
我正在尝试在我的 Ubuntu 服务器中安装 phpmyadmin,当我尝试通过浏览器访问它时,会下载一个 php 文件而不是显示网页。我在 /var/www 中放置了一个 phpinfo 测试文件,它工作正常。
我已经在 php5.conf 文件中注释了几行:
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch ".+\.phps$">
SetHandler application/x-httpd-php-source
# Deny access to raw php sources by default
# To re-enable it's recommended to enable access to the files
# only in specific virtual host or directory
Order Deny,Allow
Deny from all
</FilesMatch>
# Deny access to files without filename (e.g. '.php')
<FilesMatch "^\.ph(p[345]?|t|tml|ps)$">
Order Deny,Allow
Deny from all
</FilesMatch>
# Running PHP scripts in user directories is disabled by default
#
# To re-enable PHP in user directories comment the following lines
# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
# prevents .htaccess files from disabling it
#<IfModule mod_userdir.c>
# <Directory /home/*/public_html>
# php_admin_value engine Off
# </Directory>
#</IfModule>
我正在使用 Apache/2.4.6 和 Ubuntu Server 13.10
【问题讨论】:
-
我们需要更多信息:它是虚拟主机还是子目录?给我们apache中phpmyadmin路径的配置。
标签: php apache phpmyadmin ubuntu-server