Apache,將 html 根重定向到 Tomcat(已更新)

Apache,將 html 根重定向到 Tomcat(已更新)

我剛剛將 apache2/Tomcat9 伺服器從 Windows 移至 ubuntu。 ProxyPass 和 ProxyPassReverse 運作正常。已知的tomcat webapp url都經過。

但是,當我剛剛輸入 www.myservername.com 時,它會轉到預設的 var/www 目錄。

我嘗試使用重定向000-default.conf。以下適用http://www.myservername.com但不適用於https://www.myservername.com

伺服器名稱 www.myservername.com

ServerName www.myservername.com
<VirtualHost *:*>

    ServerName www.myservername.com
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/html
    Redirect permanent / https://www.myservername.com/ddd-college-website/entry
</VirtualHost>

因此,簡而言之,https://www.myservername.com/在瀏覽器中輸入內容後,用戶應該會進入https://www.myservername.com/ddd-college-website/entry.但這並沒有發生

任何意見,將不勝感激

答案1

對於 ServerName,僅設定伺服器名稱,而不是連接埠號碼。對於重定向來說是Redirect permanent / https://whatever/

相關內容