我在設置我的apache2
服務器上的第二個網站時遇到問題。 我目前有一個網站正在運行,它甚至活着。 但是我有另一個網站我正在努力,並試圖在本地託管它。 我創建了一個名爲newsite具有以下試圖設置第二個網站
<VirtualHost *:80>
ServerName newsite
ServerAdmin [email protected]
DocumentRoot /var/www/newsite/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/newsite/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
我a2ensite
newsite
啓用一個站點的可用文件編輯我的主機文件 127.0.0.1 www.newsite.com
我跑a2ensite
newsite
現在,當我查看新的網站它工作正常, ,但是當我嘗試查看我的原始網站,我只得到新網站
如果我禁用新網站(a2dissite newsite)原網站顯示細膩
任何幫助,將不勝感激
嘗試清除你的緩存並檢查 – Ananda
請詳細說明 – zorlac
清空瀏覽器chache並再次檢查。有一段時間是因爲舊的緩存文件發生的......特別是如果你使用的是chrome。 – Ananda