如何在 Apacheconf 的服务器名称设置中包含目录 (example.com/dir)?
在 Apache conf 的 Servername 设置中,我需要指定一个目录。
例如服务器名称 www.example.com/directory。我尝试过,但它不起作用。
我有一个主站点 (www.example.com),其文档根目录为 /var/www/html/main,我的子站点 URL 为 www.example.com/sub,其文档根目录为 /var/www/html/sub。
谢谢。
In Apache conf's Servername setting, I need to specify a directory.
Such as Servername www.example.com/directory. I trid and it does not work, though.
I have a main site (www.example.com) which documentroot is /var/www/html/main and my sub site URL is www.example.com/sub and its documentroot is /var/www/html/sub.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
www.example.com/directory
不是ServerName
的有效值。ServerName
的值中只能包含主机名和端口。您想要定义的内容称为
别名
。您可以在此处了解别名
。例如,在
www.example.com
的配置中,您可以添加以下行:Alias /sub /var/www/html/sub
www.example.com/directory
is not a valid value forServerName
. Only hostname and port can be included in the value forServerName
.What you want to define is called an
Alias
. You can read aboutAlias
here.For example, inside of your configuration for
www.example.com
, you can add this line:Alias /sub /var/www/html/sub