利用 Apache 的 htaccess 進行轉址

  1. 設定 httpd.conf
    <Directory "D:/test/">
            AllowOverride All
    </Directory>
  2. 新增文件.htaccess
    RewriteEngine on
    # 不管使用者輸入 sofast.info 或 www.sofast.info,一律導向 blog.exfast.me
    RewriteCond %{HTTP_HOST} ^sofast.info$ [OR]
    RewriteCond %{HTTP_HOST} ^www.sofast.info$
    RewriteRule ^(.*)$ https://blog.exfast.me/$1 [R=301,L]


這裡的資訊對您有用嗎?歡迎斗內給我