我使用直接管理员。
我需要一个带有shop
名称的子域,指向web
目录。
我在此选项中使用以下代码:admin > Custom Httpd Configurations
|*if SUB="shop"|
|?DOCROOT=`HOME`/domains/`DOMAIN`/public_html/web|
|*endif|
但这是输出代码:
DocumentRoot /home/example/domains/example.com/public_html/web/shop
这是因为在子主机模板文件(/usr/local/directadmin/data/templates/virtual_host2_sub.conf
)中写了这样的:DocumentRoot |DOCROOT|/|SUB|
我需要这个校正输出:
DocumentRoot /home/example/domains/example.com/public_html/web
我该如何解决这个问题?