Laravel 4 Virtual Host and mod rewrite setup

后端 未结 3 958
天命终不由人
天命终不由人 2021-01-05 00:01

I\'ve been trying for a few hours to install Laravel 4 and make the Virtual Hosts and Routing work but so far I\'ve been unlucky. I\'m mentioning that I\'m doing this on a <

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-05 00:39

    Try turning on AllowOverride All on the directory by changing your VirtualHost to:

    
        DocumentRoot "c:/wamp/www/laravel/public"
        ServerName laravel.dev
        ServerAlias www.laravel.dev
        
            AllowOverride All
            Order allow,deny
            Allow from all
        
    
    

提交回复
热议问题