Laravel 4 Virtual Host and mod rewrite setup

后端 未结 3 988
天命终不由人
天命终不由人 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:43

    If the htaccess file that you posted was in your /public/ folder, then that's why you're getting a 500 internal server error. That htaccess file was made for the folder that the /public/ folder is in. But since your public folder is the document root, you don't need it.

    The htaccess file in the /public/ folder should look like this:

    Options +FollowSymLinks
    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
    

    (for WAMP).

提交回复
热议问题