“htaccess redirecion https laravel” Respostas de código

Redirecionar http para https htaccess laravel 8

<IfModule mod_rewrite.c>
    RewriteEngine On        
  RewriteCond %{HTTPS} !=on    
  RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  RewriteRule ^(.*)$ public/ [L]
</IfModule>
Tyagi420

htaccess redirecion https laravel

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://YOURWEBSITEDOMAIN/$1 [R,L]
BlueMoon

Respostas semelhantes a “htaccess redirecion https laravel”

Perguntas semelhantes a “htaccess redirecion https laravel”

Mais respostas relacionadas para “htaccess redirecion https laravel” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código