很抱歉,我对这个 virtualbox 的东西很陌生。我使用的是 Oracle Virtualbox,我使用的是 Debian 系统。
我现在已经在 debian 系统上安装了 php、apache 和 mysql。
我想在我创建的目录中测试我的网站。我希望能够从浏览器访问“localhost/phpmyadmin/”,就像我在 Windows 系统中正常使用 wamp 的方式一样。
现在,当我转到 localhost 时,我可以看到以下文字:'it works!...'
我的虚拟机中的这个 Web 文件到底在哪里?
更重要的是,我不知道如何在 userdir.conf 模块中指定正确的自定义目录。我试图 gedit userdif.conf 和 php5.conf 文件。我收到警告:Gtk-WARNING **: Attempting to store changes into '/root/.local/share/recently-used.xbel.TX1V0W':No such file or directory
和几个类似的警告
这是我的 userdir.conf 代码:
<IfModule mod_userdir.c>
UserDir public_html
UserDir disabled root
<Directory /home/*/public_html>
AllowOverride All
Options MultiViews Indexes SymLinksIfOwnerMatch
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
</IfModule>
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>
它显然不起作用,我仍然无法获得 phpmyadmin。我现在该怎么办?