301 導向,簡單方式

Redirect 301 / https://www.domain.tld/

把 .com 導到 .net 去,301 方式 複雜一點

RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.net/$1 [L,R=301,NC]

http 導到 https

RewriteEngine on
RewriteCond %{HTTPS} !=on  # 或換成 off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

 

Related posts 相關文章
Apache htaccess 限制某頁面要輸入密碼 Password
More...
htaccess redirect 重導 query string
More...
Windows 存在 Redirect to SMb 漏洞,所以不要亂點 file:// 的連結
More...
給 Windows 用的,類似 Apache 的 mod_rewrite
More...

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。