| 12345678910111213141516171819202122232425262728293031 |
- <!-- Options +FollowSymLinks -Indexes
-
- IndexIgnore *
-
- DirectoryIndex
-
-
-
- <IfModule mod_rewrite.c>
-
- RewriteEngine on
-
- # gunakan port yg sesuai seperti diatas
-
- RewriteRule ^(.*)$ http://localhost:6969/$1 [P]
-
- </IfModule> -->
-
- <IfModule mod_rewrite.c>
- <IfModule mod_negotiation.c>
- Options -MultiViews -Indexes
- </IfModule>
- RewriteEngine On
- RewriteBase /
- RewriteRule ^index.html$ – [L]
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteCond %{REQUEST_FILENAME} !-l
- RewriteRule . build/index.html [L]
- </IfModule>
|