請幫忙。 我想設置3個測試點,所以每次可以從我的服務器的IP等達到: 我的服務器,IP/site1的 我的服務器,IP /站點2 我的服務器,IP/site3如何從http:// ip /文件夾中提供網站?
當我使用ServerName作爲IP它工作得很好:
<VirtualHost 127.0.0.1:8080>
ServerName x.x.x.x
DocumentRoot "/home/myfolder/public_html"
<Directory "/home/myfolder/public_html">
AllowOverride All
</Directory>
</VirtualHost>
但使用服務器名稱xxxx /站點1不工作ofcourse。 我嘗試使用Alias/site1 /路徑,它適用於第一個虛擬主機,但是當我添加2個虛擬主機到vhosts.conf只有第一個作品。
是我tryed另一個竅門是添加:
Alias /site1 /home/folder1/public_html
Alias /site2 /home/folder2/public_html
Alias /site3 /home/folder3/public_html
到/usr/local/apache/conf.d/domain-redirects.conf 和選項添加到/ usr /本地/ Apache/conf目錄/httpd.conf 這確實有效,但不正確。
我知道我可以使用一些域名,併爲其他網站設置一個子域的buch ..但使用ip更好。
有沒有一種方法來設置這種方式?