我想更改我的网络文件夹的文档根目录。我无法访问httpd.conf或虚拟主机定义,所以我无法在那里更改它。
我看到了这个问题:Using htaccess to change document root并且知道您可以使用将传入的URL重写为新路径。
文档根目录在此路径上:/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之外重写?