http到https ERR_TOO_MANY_REDIRECTS .htaccess

时间:2019-01-27 10:17:08

标签: angular apache .htaccess

我有一个角度应用程序,我想将HTTP重定向到HTTPS。 因此,我使用以下代码创建了一个.htaccess文件:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
    # If an existing asset or directory is requested go to it as it is
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
    RewriteRule ^ - [L]
    # If the requested resource doesn't exist, use index.html
RewriteRule ^ /index.html

此代码的结尾特定于angular

通过在我的网站中实施此代码,我出现了错误:ERR_TOO_MANY_REDIRECTS

我试图清除浏览器的缓存,没有结果

一个想法

先谢谢您

0 个答案:

没有答案