apache:rewrite
Tabela de conteúdos
Rewrite (Apache)
É necessário ter o módulo mod_rewrite habilitado.
Remover "www"
RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.(.+) [NC] RewriteRule ^ http://%1%{REQUEST_URI} [R=302,L,NC]
Reescrever HTTP para HTTPS mantendo a URL
RewriteEngine on RewriteCond %{HTTPS} off RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI} [R=302,L,NC]
apache/rewrite.txt · Última modificação: 27/04/2021 12:05 por 127.0.0.1