Код: Выделить всё
# -------------------------------------
# Activar el motor de reescritura
# -------------------------------------
RewriteEngine On
# Define la ruta base si el sitio está en un subdirectorio
RewriteBase /sweetCheckIn/
# -------------------------------------
# Ignorar si el archivo o directorio ya existe
# -------------------------------------
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# -------------------------------------
# Reescritura de URLs amigables
# -------------------------------------
RewriteRule ^inicio/?$ index.html [L]
RewriteRule ^contacto/?$ contact.html [L]
RewriteRule ^trabajo/?$ workTogether.html [L]
RewriteRule ^cookies/?$ cookiePolicy.html [L]
RewriteRule ^galeria/?$ gallery.html [L]
RewriteRule ^legal/?$ legalNotice.html [L]
RewriteRule ^privacidad/?$ privacyPolicy.html [L]
RewriteRule ^servicios/?$ services.html [L]
RewriteRule ^equipo/?$ team.html [L]
RewriteRule ^plantilla/?$ plantilla.html [L]
Подробнее здесь: https://stackoverflow.com/questions/796 ... od-rewrite