我正在使用laravel 5,並有一個問題,當我上傳我的項目在rackspace它顯示public/index.php在URL中。沒有這個我的項目沒有工作。如何從laravel 5的url中刪除public/index.php?
請幫幫我。我的公開的
Htacesss是這樣的: -
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
</IfModule>
至於 Harpartapsingh
可能重複[Laravel 5 - 從URL刪除公共](HTTP: //www.stackoverflow.com/questions/28364496/laravel-5-remove-public-from-url) –