2011-12-01から1ヶ月間の記事一覧

phpstylist.vim

プロジェクト毎に規約が変わったりするので、id:oppara:20111006 をプラグイン化 (phpStylistのラッパー)GitHub - oppara/phpstylist.vim: wrapper for phpStylist 設定方法 .vimrc " phpStylist.php へのパス let g:phpstylist_cmd_path = '/path/to/phpS…

特定のurlだけhttpsアクセス

//example.com/hoge/ と //example.com/moge/ は https RewriteEngine On RewriteCond %{HTTPS} on RewriteCond %{REQUEST_URI} !(^/(hoge|moge)/) RewriteRule ^(.*) http://%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTPS} on RewriteCond %{REQUEST_URI}…