React (1) 썸네일형 리스트형 How to setup apache server for React route? 리액트 빌드 후 아파치에 배포하고자 할 때. 빌드 디렉토리를 DocumentRoot 로만 잡았더니, sub path 일때 오류가 발생했다. virtualhost 를 아래와 같이 설정하면 된다. ServerName example.com DocumentRoot /var/www/httpd/example.com ... RewriteEngine on # Don't rewrite files or directories RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] # Rewrite everything else to index.html to allow html5 state links Rewrite.. 이전 1 다음