Virtualhost

Apache2 最簡單的重定向不再起作用

  • December 10, 2015

我是伺服器配置的新手,我遇到了一個可能很奇怪的問題。

我成功地設置了一個網路伺服器,甚至有一個從 http 到 https 的有效重定向。現在,在不知情的情況下,重定向停止工作。

我將相關配置部分分解為:

/etc/apache2/sites-available/myServername.conf

<VirtualHost *:80>
  ServerName myServername
  Redirect permanent / https://myServername/
</VirtualHost>

首先,如果我在瀏覽器中輸入“myServername”,我會按照我的意圖出現“ https://myServername/ ”。現在我看到了我的伺服器的索引頁面,具有正常的 http 訪問。怎麼可能?

我在 Debian 系統上使用 Apache/2.4.10。

問候,托比

我意識到 000-default 文件也已啟用。它也在埠 80 上指定。看起來 apache2 不知何故開始使用這個條目。謝謝,問題解決了:)

引用自:https://serverfault.com/questions/742162