我在我的 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 附加到我的链接中。
有任何想法吗??谢谢亚当,