AltoRouter 的 htacess 重写包括重定向到 https



我正在使用Altorouter,它需要以下内容

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

这工作得很好,但我还需要将 http 重定向到 https。 我在网上找到了例子,但我将两者结合起来的所有努力都失败了。 我将如何将顶部摘要与此相结合?

RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://example.com/$1 [R]

尝试下面,

RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://yourdomain.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

相关内容

  • 没有找到相关文章

最新更新