1
我有多個域名,如example.org,example.com或example.net如何使用國防部重寫
所以我想使用國防部重寫映入URL寫規則併發送用戶編寫此規則從 http://www.example.org/random-page或http://www.example.net/random-page到http://www.example.com/random-page
感謝您的建議!
我有多個域名,如example.org,example.com或example.net如何使用國防部重寫
所以我想使用國防部重寫映入URL寫規則併發送用戶編寫此規則從 http://www.example.org/random-page或http://www.example.net/random-page到http://www.example.com/random-page
感謝您的建議!
試試這個規則在DOCUMENT_ROOT/.htaccess
文件:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)example\.(org|net)$ [NC]
RewriteRule^http://example.com%{REQUEST_URI} [L,NC,R=302]
它沒有必要/西元,我想給所有從其他域(.ORG,.NET,.ES)的TRAFIC到.COM。謝謝! – Fosfor
好吧現在編輯。它不會重定向每個URI。確保example.org/net的'DOCUMENT_ROOT/.htaccess文件中的這條規則' – anubhava
這是否適合您? – anubhava