2017-08-02 60 views

回答

0

需要更多輸入。你用apache?

則是這樣的:

<VirtualHost *:80> 
    ServerName subdomain.example.com 
    RewriteEngine On 
    RewriteRule (.*) https://subdomain.example.com/$1 [R,L] 
</VirtualHost> 

<VirtualHost *:*> 
    ServerName example.com 
    RewriteEngine On 
    RewriteRule (.*) https://www.example.com/$1 [R,L] 
</VirtualHost> 
+0

是的,我有管理嚮導如果進一步幫助。我會看看這個,目前我一直在使用一些htaccess規則。謝謝。我會更新llater。 – doublesaces