2017-09-27 75 views

回答

1

嗨,大家好,這是幫助任何人誰與其他領域的問題指向那裏Origin IP和索引更高,然後他們等等!首先,你需要做的

的是確保在httpd.conf文件mod_rewrite.so模塊啓用

Include conf.modules.d/*.conf 
LoadModule rewrite_module modules/mod_rewrite.so 

而且你還必須確保你允許的.htaccess文件覆蓋所有: - 「WWW」

# AllowOverride controls what directives may be placed in .htaccess files. 
    # It can be "All", "None", or any combination of the keywords: 
    # Options FileInfo AuthConfig Limit 
    # 
    AllowOverride All 

一旦做到這一點,你既可以設置301永久重定向所以在我的情況下,所有你需要做的是設置的forwader 「yourdomain.com」,並將其轉發到https://或http://「yourdomain.com」的重寫。爲此,您可以在您的DNS管理你的頁面設置或重寫條件下複製此代碼,以及到您的.htaccess文件現在

Options FollowSymLinks 

RewriteEngine On 
RewriteBase/

RewriteCond %{HTTPS_HOST} !^https://yourdomain.com$ 
RewriteRule ^/?(.*) https://www.my-domain.com/$1 [QSA,R=301,L] 

,你可以看到我所建立的HTTPS重寫://連接 - 如果你想重寫http,只需刪除S等等第四!

我的問題是現在我不知道如何阻止我的「targetdomain.com」能夠訪問我的起源數據!

相關問題