¿Cómo puedo agregar el hashtag a una URL?
Ejemplo: http://www.example.com/fotos/fiesta/
a http://www.example.com/#/fotos/fiesta/
Agregando "#" después del dominio
Estoy utilizando:
Código:
y quiero hacer lo mismo pero sin el redirectvar url = document.location.hash; var anchor = url.split('#'); if (anchor.length == 1){ var redirect = 'http://'+document.location.host+'/#'+document.location.pathname; window.location = redirect }
¿Alguien me puede ayudar?