Wampserver に Laravel をインストールしています。ディレクトリは次のとおりです。
C:\wamp\www\laravel
現在、URL は次のようになっています。
http://localhost/laravel/public/index.php/home/index
そこで、次のhtaccessコードを使用しました
Options +FollowSymLinks
Options -indexes
DirectoryIndex index.PHP
RewriteEngine on
RewriteCond $1 !^(index\.PHP|images|robots.txt)
RewriteCond %{REQUEST_ FILENAME} !-f
RewriteCond %{REQUEST_ FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L, QSA]
URL を減らすには
http://localhost/laravel/public/home/index
しかし、laravel フレームワークは、すべてのアプリケーション ファイルが public フォルダーに存在することを要求します。
したがって、URLが次のようになるように、htaccessファイルに何を追加(または削除)する必要があるかを知りたい
http://localhost/laravel/home/index
ありがとう