-
Notifications
You must be signed in to change notification settings - Fork 0
/
.htaccess
19 lines (19 loc) · 831 Bytes
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Chizumage.com
# Redireccion de dominio principal a subdirectorio
# Copiar y pegar y modificar según necesidades
# Esta linea no quitarla
RewriteEngine on
# Cambiar chizumage.com por su nombre de dominio
RewriteCond %{HTTP_HOST} ^(www.)?chizumage.com$
# Cambiar 'build' por el nombre del subdirectorio que quiere usar
RewriteCond %{REQUEST_URI} !^/build/
# No cambiar estas lineas.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Cambiar 'build' por el nombre del subdirectorio que quiere usar
RewriteRule ^(.*)$ /build/$1
# Cambiar chizumage.com por su nombre de dominio
# Cambiar 'build' por el nombre del subdirectorio que quiere usar
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?chizumage.com$
RewriteRule ^(/)?$ build/index.html [L]