Laravel에서 생성 된 URL 을 제거 index.php
하거나 제거해야합니다 public/index.php
. 일반적으로 경로는 localhost/public/index.php/someWordForRoute
다음과 같아야합니다.localhost/someWordForRoute.
.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes.
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php[L]
app / config / app.php
'url' => 'http://localhost',
어떻게 변경할 수 있습니까?
mod_rewrite
활성화되어 있는지 확인하십시오 .