正如標題所述,我無法讓我的網站重定向。我已經做了幾次嘗試,並且即將失去它。Laravel Route不能與Wamp配合使用
我的.htaccess文件如下:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
我有這個文件放置在WWW/Laravel /公用文件夾以及www目錄
- mod_rewrite的啓用
- AllowOverride設置爲全部
我的主機文件如下
127.0.0.1 localhost
這裏是包含在routes.php文件
Route::get('authors', array('uses'=>'[email protected]'));
我有一個控制器命名authors.php路由代碼,這裏是代碼
class Authors_Controller extends Base_Controller {
public $restful = true;
public function get_index() {
return View::make('authors.index');}
}
我正在使用Windows 7旗艦版。我即將把我的腦袋炸開。請幫助我,我吮吸。
你還會介意把系統錯誤輸出什麼.. – 2013-03-25 03:34:10
[Sun Mar 24 20:19:47 2013] [error] [client 127.0.0.1]文件不存在:E:/ wamp/www/Laravel/public/authors – spm 2013-03-25 03:35:08
檢查你的視圖文件,如果存在的話,或者在控制器中的路由,如果它設置正確 – 2013-03-25 03:48:54