Skip to content

Commit

Permalink
Atualização da página de erro 404
Browse files Browse the repository at this point in the history
  • Loading branch information
renatomb committed Nov 20, 2023
1 parent 4d642e5 commit 87cca07
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
<div class="container">
<h1>404</h1>

<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
<p><strong>Página não encontrada :(</strong></p>
<p>A página solicitada não foi encontrada, verifique se a página desejada é <div id="novolink"></div>.</p>
</div>

<script>
// Obter o url acessado
var url = window.location.href;

// Remover o /ajuda/ do url
var novoUrl = url.replace("/ajuda/", "/");

// Selecionar a div novolink
var div = document.getElementById("novolink");

// Reescrever na página o novo url correto
div.innerHTML = novoUrl;

</script>

0 comments on commit 87cca07

Please sign in to comment.