我想更改我的 web 文件夹的文档根目录。我无权访问 httpd.conf 或虚拟主机定义,因此无法在此处更改。
我看到了这个问题:Using htaccess to change document root and know you can use to rewrite the incoming URL to a new path。
文档根在此路径上:/httpdocs/*
我希望它重写所有内容/subdomains/new/httpdocs/*
如果我查看“正常”重写规则,它会重写为相对路径:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain-name.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain-name.com$
RewriteRule (.*) /folder/$1 [L]
怎么可能在 wwwroot 之外重写?