•我已经在 CentOS 5 上安装了 apache。
•我已经在 namecheap.com 注册了一个域名
当我在网络浏览器中输入 URL 时,我希望它重定向到网站内的目录。
目前,它只是进入 /var/www/html。
我希望网站转到 /var/www/html/website1,这样我就可以在同一台服务器上托管两个网站。
我该如何做呢?
目前,如果我去my_ip_地址/website1但我希望 website1 文件夹成为该特定网站的父目录。
答案1
你需要:
就像是:
<VirtualHost 10.1.2.3:80>
ServerAdmin [email protected]
DocumentRoot /www/docs/host.example.com
ServerName host.example.com
ErrorLog logs/host.example.com-error_log
TransferLog logs/host.example.com-access_log
</VirtualHost>
根据 Apache 文档。