mod_rewrite (.htaccess) で簡単メンテナンスモード

Webアプリフレームワークの「簡単メンテナンスモード」コンテストにエントリーされる方はいらっしゃいませんか。http://d.hatena.ne.jp/tanakahisateru/20110527/1306495794 (いろんなフレームワークの性格が見えて面白いと思う) http://twitter.com/tanakahisateru/status/74078560624721920 さあ、お待ちかね mod_rewrite / .htaccessの場合です。 [ad] ...

5月 27, 2011 · nojimage

特定のURLを強制的にhttpsにする

mod_rewriteが使えるなら RewriteEngine on RewriteBase / RewriteCond %{REQUEST_URI} ^/anypath [OR] RewriteCond %{REQUEST_URI} ^/otherpath RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

7月 14, 2009 · nojimage