8 lines
197 B
ApacheConf
8 lines
197 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*)$ "http://127.0.0.1:3000/$1" [P]
|
|
</IfModule> |