摘要:PHP-Laravel-Apache 設定虛擬目錄
這次要在自己的本機架設別人的Laravel PHP 程式,
但登入頁的css是正常,一但進去後,結果變不正常。
相對位置出了問題。
所以,需要設定一下虛擬目錄
我使用的是Xampp建的wamp
到
C:\xampp\apache\conf\extra\httpd-vhosts.conf
建立虛擬主機對映虛擬目錄
<VirtualHost *:80>
ServerName 本地私有IP
DocumentRoot "C:\xampp\htdocs\專案\public"
</VirtualHost>
http://本地私有IP/
就可以完整的對映相對目錄