0

我在我的 OSX 设置中遇到了 Laravel 的 htaccess 文件的问题。我一直在 WAMP 上完美地运行应用程序,但是当我转移到我的 Mac 时,我开始遇到问题。

htaccess 是默认的

    # Apache configuration file
    # http://httpd.apache.org/docs/2.2/mod/quickreference.html

    # Note: ".htaccess" files are an overhead for each request. This logic should
    # be placed in your Apache config whenever possible.
    # http://httpd.apache.org/docs/2.2/howto/htaccess.html

    # Turning on the rewrite engine is necessary for the following rules and
    # features. "+FollowSymLinks" must be enabled for this to work symbolically.

     <IfModule mod_rewrite.c>
        Options +FollowSymLinks
        RewriteEngine On
     </IfModule>

    # For all files not found in the file system, reroute the request to the
    # "index.php" front controller, keeping the query string intact

     <IfModule mod_rewrite.c>
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^(.*)$ index.php/$1 [L]
     </IfModule>

我正在使用 V-Hosts 来获得 XXXXXXX.laravel URL。

我已将 URL 添加到我的配置文件中,并将索引留空。

每次我访问主页 XXXXXXX.laravel 我都会得到主页,但是当我导航到 XXXXXXX.laravel/test 时,我会得到 404。

如果我尝试 XXXXXXX.laravel/index.php/test 它工作正常。

如果我将 index.php 添加到配置文件中的索引,它只是将 index.php 附加到我的链接中。

有任何想法吗??谢谢亚当,

4

2 回答 2

2

打开 Apache httpd.conf并检查你是否打开了mod_rewrite

LoadModule rewrite_module modules/mod_rewrite.so

并没有像这样关闭

#LoadModule rewrite_module modules/mod_rewrite.so
于 2013-01-23T17:56:35.657 回答
0

我有同样的问题,并通过将 rewrite conf 放在<Directory />虚拟主机的 apache conf 文件块中来解决它。我正在使用 Laravel 4。

于 2014-03-22T14:43:14.750 回答