2015-09-09 97 views
-1

不知道如何解決這個問題或複製錯誤,但似乎有時我的網站進入403重定向錯誤。隨機奇怪403在我的網站主頁上重定向?

我已經刪除的cookie就我個人的瀏覽器,但它似乎進入其他機器上的403(不同IP的)

我的直覺可能是htaccess文件....

任何人都可以點什麼以下規則是奇怪的嗎?

感謝....

<files .htaccess> 
Order allow,deny 
Deny from all 
</files> 

Options +FollowSymLinks 
RewriteEngine On 

#Options -Indexes 

# All pages www 
RewriteEngine On 
RewriteCond %{HTTP_HOST} !^www\. 
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] 

# below to force https 
RewriteEngine On 
RewriteCond %{HTTP_HOST} !^www\. [OR,NC] 
RewriteCond %{HTTPS} off 
RewriteRule^https://www.my-site.com%{REQUEST_URI} [NE,R=301,L] 
+0

你發現它是好友嗎? –

回答

0

我發現它是什麼 - 基本上我的DNS設置不同的......我用OpenDNS和它搞亂了我個人的UI體驗...

相關問題