使用默认的Laravel htaccess我添加了一个重定向,但它没有按照我的需要去做。
我需要将所有内容重定向到https://www并保留所请求的路径。
EG。 domain.com/mypath> https://www。 domain.com/mypath
EG。 www.domain.com/mypath> https://www。 domain.com/mypath
EG。 (所有可能的变化).domain / my path> https://www。 domain.com/mypath
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Added by ME
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mydomain.nz/$1 [R,L]
RewriteCond %{THE_REQUEST} /index [NC]
RewriteRule ^ / [R=302,L,NE]
</IfModule>