/*点滅スクリプトと同時使用*/ @-webkit-keyframes pulse { from { opacity: 1.0;/*透明度100%*/ } to { opacity: 0.1;/*透明度80%*/ } } #d_sidenavi_in ul.side_main_navi li a:hover { -webkit-animation-name: pulse;/* 実行する名前 */ -webkit-animation-duration: 0.1s;/* 0.3秒かけて実行 */ -webkit-animation-iteration-count: 3;/* 何回実行するか。infiniteで無限 */ -webkit-animation-timing-function: ease-in-out;/* イーズインアウト */ -webkit-animation-direction: alternate;/* alternateにするとアニメーションが反復 */ -webkit-animation-delay: 0s; /* 実行までの待ち時間 */}
日: 2013年12月30日
お引越の際はhtaccess
RedirectMatch 301 .* http://example.com/index.html
これがどこにアクセスしてもここに飛ぶ 全部トップページへ飛ばす。
301が検索エンジンにも引越報告
以下例 その他
サーバー移転などサイト全体のリダイレクト
現在のサーバーURL(転送元) http://www.example.jp/
新しいサーバーURL(転送先) http://example.com/
Redirect permanent / http://example.com/
ディレクトリ単位のリダイレクト(転送)
現在のサーバーURL(転送元) http://www.example.jp/shop/
新しいサーバーURL(転送先) http://example.com/japan/shopping/
Redirect permanent /shop/ http://example.com/japan/shopping/
特定ファイル(拡張子)のみリダイレクト(転送)
現在のサーバーURL(転送元) http://www.example.jp/
新しいサーバーURL(転送先) http://example.com/
RedirectMatch 301 (.*)\.jpg$ http://example.com$1.jpg
RedirectMatch 301 (.*)\.gif$ http://example.com$1.gif