差異處
這裏顯示兩個版本的差異處。
Both sides previous revision 前次修改 下次修改 | 前次修改 | ||
apache [2016/11/29 17:19] jz |
apache [2017/02/28 00:32] (目前版本) jz |
||
---|---|---|---|
行 1: | 行 1: | ||
====== Apache ====== | ====== Apache ====== | ||
+ | |||
+ | ===== Hide server info ===== | ||
+ | <code apache> | ||
+ | Header unset Server | ||
+ | |||
+ | ServerSignature Off | ||
+ | ServerTokens Prod | ||
+ | </code> | ||
+ | |||
+ | ===== Redirect ===== | ||
Redirect with htaccess | Redirect with htaccess | ||
- | <code> | + | <code apache> |
# permanent | # permanent | ||
Redirect 301 /google http://www.google.com/ | Redirect 301 /google http://www.google.com/ | ||
# temporary | # temporary | ||
Redirect 302 /google http://www.google.com/ | Redirect 302 /google http://www.google.com/ | ||
+ | # redirent home | ||
+ | RewriteEngine On | ||
+ | RedirectMatch 301 ~.+ http://example.com/$0 | ||
</code> | </code> | ||
+ | |||
+ | User dir redirect | ||
+ | <code apache> | ||
+ | <IfModule mod_userdir.c> | ||
+ | UserDir http://example.com~*/ | ||
+ | </IfModule> | ||
+ | </code> | ||
+ | |||
+ | |||
===== SSLEngine ===== | ===== SSLEngine ===== | ||
行 47: | 行 69: | ||
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | ||
</code> | </code> | ||
+ | |||
+ | ref: | ||
+ | |||
+ | http://unix.stackexchange.com/questions/124137/change-apache-httpd-server-http-header | ||
+ | |||
+ | https://donjajo.com/modify-apache-servertokens-custom-value-using-mod_security-module/ |