如何将域指向特定目录?

如何将域指向特定目录?

可能重复:
为不同的域托管多个不同的文件夹

我有两个指向同一个 IP 地址的域名。

他们都进入了目录/public_html/www/

创建其中一个域的主目录的最佳方法是什么/public_html/www/somethingelse/

答案1

在您的 httpd.conf 中添加一个新的虚拟主机条目,如下所示:

<VirtualHost *:80>
  DocumentRoot /public_html/www/somethingelse/
  ServerName www.yourdomain.com

  # Other directives here

</VirtualHost>

阅读此文了解更多信息:http://httpd.apache.org/docs/2.2/vhosts/examples.html

相关内容