我的網站正在運行virtualmin
控制面板的虛擬服務器當前正在重定向302臨時URL,而我在.htaccess
文件中添加了重定向規則。如何使用301永久性重定向將www url重定向到非www網址?
這裏是我的.htaccess
文件中的配置:
Options -Indexes
RewriteEngine On
RewriteBase/
RewriteRule ^index.html$ index.php
RewriteRule ^(([a-zA-Z0-9-_]+)?)\.html$ page.php?pagId=$1
RewriteCond %{http_host} !^example.com$ [nc]
RewriteRule ^(.*)$ https://example.com/$1 [r=301,nc,L]
請讓我知道什麼樣的變化,我需要在我的Web服務器,使所以正確重定向301永久重定向?
我想以這種URL格式「https://example.com/」重定向我的域的所有請求。
非常感謝anubhava的幫助,但仍然無法工作302重定向。 – user128296
您在瀏覽器中輸入了哪個網址,哪些網址無效?這個.htaccess位於哪裏? – anubhava
由於Anubhava問題已解決。 – user128296