去评论
dz插件网

DZ放在虚拟空间里URL上总是带个子目录名怎么去掉?

哥斯拉
2022/07/01 10:51:47
大家好,我的dz网站放在阿里云的虚拟空间里,通过.htaccess绑定目录来实现域名访问,但是问题是URL链接上域名后面总是带个子目录名,比如:https://www.域名/子目录名/...,这个子目录名怎么去掉呢?

附:.htaccess绑定目录的规则
  1. # 将 www.域名 解析到 子目录RewriteCond %{HTTP_HOST} ^(www.)?域名$RewriteCond %{REQUEST_URI} !^/子目录名/RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ /子目录名/$1RewriteCond %{HTTP_HOST} ^(www.)?域名$RewriteRule ^(/)?$ /子目录名/index.php [L]
伪静态规则:
  1. # 将 RewriteEngine 模式打开RewriteEngine On# 如 www.discuz.net/bbs/,对应的就是 RewriteBase /bbs/,如果程序放在根目录中,使用 RewriteBase /RewriteBase /子目录名/# Rewrite 系统规则请勿修改RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$1:$2&%1