這是我的Laravel-5.4代碼,我面臨着問題。我創建的測試laravel項目,兩頁回家 & 關於我們和映射使用Apache抗宿主(www.test.com)
當我打www.test.com它加載的文件路徑正確的索引頁,但是當我嘗試打www.test.com/about它顯示404錯誤。但是當我打這樣的URL www.test.com/index.php/about頁加載正常 我不知道它的問題是在我的代碼或Apache配置或任何ot她.htaccess設置:Laravel頁面重定向不起作用
控制器:
public function index(){
return view('pages.index');
}
public function about(){
return view('pages.about');
}
路線:
// Home Page
Route::get('/','[email protected]');
// About Us Page
Route::get('/about','[email protected]');
的Apache的conf:
ServerAdmin [email protected]
ServerName test.com
ServerAlias www.test.com
DocumentRoot /var/www/html/test/public/
的.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>
? –
@BagusTesa我的.htaccess 選項-MultiViews RewriteEngine敘述在 #重定向結尾的斜槓如果不是文件夾... 的RewriteCond%{} REQUEST_FILENAME! -d 重寫規則^(。*)/ $/$ 1 [L,R = 301] #拉手前端控制器... 的RewriteCond%{REQUEST_FILENAME}!-d 的RewriteCond%{REQUEST_FILENAME}!-f 重寫規則^ index.php [L] #Handle授權標題呃 RewriteCond%{HTTP:Authorization}。 RewriteRule。* - [E = HTTP_AUTHORIZATION:%{HTTP:Authorization}] –
請將它添加到您的問題.. –