2015-08-26 77 views
0

假設爲users模塊當用戶鍵入URL http://localhost/project/users/上的瀏覽器,我想送他們到[email protected]。爲此我試圖航線Route::get('users/', '[email protected]');但這發送到xampp.There的主頁是沒有問題的在路由http://localhost/project/users/indexhttp://localhost/project/users但我想路由用戶http://localhost/project/users/以及如何。我可以實現這一目標?操縱URL根

+0

您的路線結構令人困惑! – hizbul25

+0

@ hizbul25,簡單地說我想要一個在末尾用'/'來捕獲URL的路由。如'http://localhost/project/public/index.php/users/'。 – Sumit

+0

@ hizbul25,我認爲現在路線結構非常清晰,我修剪後的URL .. – Sumit

回答

0

這個問題不在你的路由中,它是你的文檔根文件夾被指向htdocs,其中默認的index.php加載xammp。 檢查你的虛擬主機文件 XAMPP \ apache的\的conf \額外 見例如

<VirtualHost *:80> 
    ServerAdmin [email protected] 
    DocumentRoot "C:/xampp/htdocs/laravel/public" 
    ServerName localhost 
    ErrorLog "logs/dummy-host.example.com-error.log" 
    CustomLog "logs/dummy-host.example.com-access.log" common 
</VirtualHost> 

希望這有助於虛擬主機設置。