我有一个完美的index.php页面,但是当我想进入另一个页面时,比如“关于我们”页面,我在第7610行的compiled.php中有NotFoundHttpException。
我的路线是这样的:
Route::get('about', 'AboutController@index');
我的控制器是:
class AboutController extends Controller {
public function index()
{
return view('template.aboutUs.about');
}
}
我在Wamp上启用了重写模块。
我在Windows 7上。
答案 0 :(得分:3)
您应该在控制台中运行:
php artisan route:clear
清除缓存的路由文件。
答案 1 :(得分:0)
根据您的项目删除暂停的虚拟目录 在XAMPP \ apache \ conf \ httpd.conf
中<VirtualHost *:80>
DocumentRoot "F:\xampp\htdocs\larvel\col_att\public"
ServerName shah_larvel.dev
</VirtualHost>