WebServer/Apache

Os_windows_Apache + SPA [ Vue.js ] / 404 Error

WS.GI 2023. 8. 3. 11:41
여러분의 후원은 큰 힘이 됩니다. 기업은행 35611080101018
반응형
 

LoadModule rewrite_module modules/mod_rewrite.so

 

1. mod_rewrite.so 모듈 활성화

 RewriteEngine on
    # If an existing asset or directory is requested go to it as it is
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    # If the requested resource doesn't exist, use index.html
    RewriteRule ^ index.html [L]

httpd.conf 설정 파일 수정.

Ctrl+F5 !

반응형

'WebServer > Apache' 카테고리의 다른 글

React 배포 시 404 에러 해결  (0) 2023.12.01
PHP5 연동하기  (0) 2023.08.04
Os_ubuntu_서브디렉토리 / 포트 설정  (0) 2023.08.03
Os_windows_서브 디렉토리_Name-based 방식.  (0) 2023.08.03
Os_ubuntu_Apache24 설치  (0) 2023.07.24