🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
进入WDCP程序的文件管理,从主目录返回上一级目录找到 /www/wdlinux/apache/conf/vhost 找到对应的域名文件 比如 www.hbflight.net.conf 讲域名指向/public ``` <VirtualHost *:88> DocumentRoot /www/web/hbflight_net/public_html/public ServerName www.hbflight.net ErrorDocument 400 /errpage/400.html ErrorDocument 403 /errpage/403.html ErrorDocument 404 /errpage/404.html ErrorDocument 405 /errpage/405.html ErrorDocument 503 /errpage/503.html </VirtualHost> <Directory /www/web/hbflight_net> Options FollowSymLinks AllowOverride All Require all granted </Directory> ```