#contents
&tag(Apache);
* 情報 [#r57ddbbd]
- [[Apacheサーバー構築法 - 第5回設定を上書きする「.htaccess」:ITpro>http://itpro.nikkeibp.co.jp/article/COLUMN/20080512/301299/]]
- [[ダイジェスト認証を設定する - アクセス制限 - Apache入門>http://www.adminweb.jp/apache/allow/index8.html]]
* [[セキュリティ]] [#mb63db16]
- [[ブログやサイトのパフォーマンス改善やセキュリティ向上のためによく使う.htaccessの設定のまとめ | コリス>http://coliss.com/articles/build-websites/operation/work/useful-htaccess-snippets.html]]
ブログやWebサイトのパフォーマンスの改善やSEO、セキュリティの向上に役立つ.htaccessの設定を紹介します。
** 2.4 [#x6d3a1f9]
- [[Apache2.4/Tips - PukiWiki>http://www.sssc.cc/wiki/index.php?Apache2.4%2FTips]]
Orderによるアクセス制限が非推奨となり、Requireを使う事になったヨウス。
- [[人間とウェブの未来 - Apache 2.4系でのモダンなアクセス制御の書き方>http://blog.matsumoto-r.jp/?p=3482]]
Require ipのほかにも、Require hostとかけたりします
- [[Apache2.4で.htaccessの記法が変更に: アベログ>http://abe-log.cocolog-nifty.com/blog/2012/05/apache24htacces.html]]
<Directory />
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>