Laravel의 URL에서 "public/index.php"를 제거하는 방법

Laravel의 URL에서 "public/index.php"를 제거하는 방법

2022-10-18 last update

3 minutes reading htaccess Laravel Apache
Laravel 루트 디렉토리에서 .htaccess 파일을 생성하거나 편집하고 URL에서 "public/index.php"를 제거하도록 RewriteRule을 구성합니다. Apache 서버에서 mod_rewrite를 활성화해야 합니다. 이러한 설정을 적용하려면 다시 쓰기 모듈이 필요합니다. 또한 Laravel을 위한 enabled .htaccess in Apache 가상 호스트가 있습니다. 다음 코드를 포함하도록 .htaccess 파일을 편집하십시오.
다시 쓰기 엔진 켜기
RewriteRule ^(.*)$ 공개/$1 [L]
1234   RewriteEngine On    RewriteRule ^(.*)$ public/$1 [L]이제 "/public/index.php/"없이 웹사이트에 액세스할 수 있습니다. 부분.