インターネットで「ここでは許可されていない.htaccessオプション」を検索してみてください。
私が(グーグルを使って)見つけた提案は:
httpd.confファイルにAllowOverrideAllが含まれていることを確認してください。
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/)で質問することができますが、そこには本当に役立つ人々がいます。