您可以尝试在互联网上搜索“此处不允许使用.htaccess选项”。
我发现的一个建议(使用谷歌)是:
检查以确保您的 httpd.conf 文件具有 AllowOverride All。
一个在Mint Linux上适合我的.htaccess文件(放置在Laravel /public文件夹中):
# Apache configuration file
# http://httpd.apache.org/docs/2.2/mod/quickreference.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>
希望这对您有所帮助。否则,您可以在Laravel论坛上提出问题(http://forums.laravel.com/),那里有一些非常有帮助的人。