我在設置新服務器後想出了這個問題。當我點擊一個路由時,laravel在本地主機之後放置一個index.php。例如localhost/index.php/mysite/public/login.
如何在localhost後刪除index.php
?laravel在localhost後添加URL中的index.php
1
A
回答
0
請確保您有內部與下面的代碼公共文件夾的.htaccess文件:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
+0
我已經有.htaccess,但結果相同。 –
+0
您正在使用哪個服務器? –
+0
即時通訊使用Windows Server 2012 R2 –
相關問題
- 1. 如何在magento url中添加index.php?
- 2. Laravel URL :: route和index.php
- 3. laravel 5.2項目沒有在url上添加index.php沒有運行
- 4. 如何在Laravel 5.2中路由localhost url
- 5. index.php在www後添加。用的.htaccess
- 6. 從Laravel的URL中刪除index.php
- 7. 從URL刪除index.php,Laravel 5.2
- 8. Joomla和默認的index.php添加到URL
- 9. CodeIgniter轉義乾淨的URL添加index.php/
- 10. 從laravel url中刪除/public/index.php
- 11. Laravel添加樣式的URL?
- 12. index.php在wordpress中使用虛擬主機在url中添加
- 13. Mode_rewrite將index.php添加到url結尾
- 14. 新的URL正在追加localhost url
- 15. index.php追加到url
- 16. 從URL中移除笨的index.php後
- 17. 如何刪除index.php並在CodeIgniter URL中添加www?
- 18. http://localhost/index.php重定向到http:// localhost/xampp/
- 19. 爲什麼IIS將URL添加到URL的localhost/default.aspx?
- 20. 如何重寫URL這樣的http://localhost/gestor_3.0/index.php P = cadastros&T = operadoras
- 21. 在Laravel中附加到url
- 22. 無法從laravel url中刪除index.php?在Ubuntu 14.04
- 23. CSS在url中有index.php
- 24. php:在url中刪除index.php
- 25. 將URL重寫爲index.php,但避免在URL中使用index.php
- 26. WordPress的 - 添加類別index.php
- 27. index.php作爲laravel網站的url中的參數
- 28. Laravel 5.1 Localhost中的SSL
- 29. 主頁不加載沒有index.php在url,example.com/index.php
- 30. 如何從Laravel 5.1的url中刪除index.php?
https://stackoverflow.com/questions/37507209/how-to-hide-config-files-from-直接訪問 –
同樣的結果。每次我點擊它仍然重定向的東西index.php –
這意味着你沒有正確設置網絡服務器,或者你沒有重新啓動它。 –