sudo killall -HUP mDNSResponder
Force www. in a generic way with .htaccess
source: https://www.dataplugs.com/tc/kb/使用-htaccess-檔案強制將-http-導向-https-ssl/
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
Force SSL with .htaccess
source: https://www.siteground.com/kb/how-to-force-ssl-with-htaccess/
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Google Docs 使用 .new 網域名稱快速新增文件、試算表和簡報
快速建立文件:
快速建立試算表:
快速建立簡報:
快速建立表單:
整合 Google Sites 協作平台快速建立網頁:
將網頁變成黑白
在CSS加入…
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
_filter: none;
}
