Base de Conhecimento

Como redirecionar uma página para outra página ou site usando .htaccess? imprimir

  • htaccess, SiteWorx
  • 0

Se uma página em seu site não existe mais e você deseja redirecioná-la para sua nova página ou site, você pode usar o arquivo .htaccess para redirecionamento sem esperar.

Redirecionar de uma página / diretório para outro domínio ou domínio principal:

Redirect from a specific page to a domain:
RewriteEngine on
Redirect 301 /mypage.html http://example.com


Redirect from a page to another page:
Redirect from a page/directory to another page
Redirect 301 /oldpage.html /newpage.html


Now, whenever you open the url example.com/oldpage.html, it will automatically redirect you to example.com/newpage.html.


Esta resposta lhe foi útil?
« Voltar

Powered by WHMCompleteSolution