我安装了apache2
,mariadb
和phpmyadmin
。我可以通过 (ip) 找到我的数据库,xxx.xxx.xxx.xxx/phpmyadmin
但我想将我的项目保存在 之外的其他地方/var/www/html
。
我怎样才能做到这一点?
答案1
是的,当然:检查服务器根目录在你的 apache 配置中。
以下是一些例子:
# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
DocumentRoot "/www/example1"
ServerName www.example.com
# Other directives here
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/www/example2"
ServerName www.example.org
# Other directives here
</VirtualHost>