我正在使用Opencart 2.0我想爲第二個商店設置一個虛擬主機。我也使用Xampp on Kali Linux。我在/opt/lampp/htdocs/main_store/
有主店,我用它來訪問它的網址是localhost/main_store
我在後端創建了第二個商店,我已將其網址設置爲http:localhost/store_2
。我已經編輯我的/etc/hosts
,我有我添加的服務器名稱在linux上爲opencart設置虛擬主機/多個商店
127.0.0.1 localhost
127.0.1.1 hostname
127.0.0.1 localhost/store_2
我已經編輯我的/opt/lampp/etc/extra/http.v-hosts.conf
並添加
# Sub domain localhost/store_2
<VirtualHost *:80>
DocumentRoot "/opt/lampp/htdocs/main_store/"
ServerName localhost/store_2
<Directory "/opt/lampp/htdocs/main_store/">
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
當我鍵入localhost/store_2
我得到一個對象未找到錯誤。我究竟做錯了什麼?
你不能使用'localhost/store_2'作爲虛擬主機名,所以這在你的hosts文件或者VirtualHost配置文件中都不起作用。 'localhost'是你的主機名,'/ store_2'是你的目錄(或應用程序)名稱 – arco444
Stack Overflow是一個編程和開發問題的網站。這個問題似乎與題目無關,因爲它不涉及編程或開發。請參閱幫助中心的[我可以詢問哪些主題](http://stackoverflow.com/help/on-topic)。也許[超級用戶](http://superuser.com/)或[Unix&Linux堆棧交換](http://unix.stackexchange.com/)會是一個更好的地方。另請參閱[我在哪裏發佈有關Dev Ops的問題?](http://meta.stackexchange.com/q/134306) – jww