namazu-ml(ring)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 検索ロボ サーチ君



ファストスタジオ廣瀬です。

From: Satoru Takabayashi
Subject: [namazu 547] Re: 検索ロボ サーチ君
Date: Thu, 15 Apr 1999 17:05:31 +0900

 > .namazurc を見せないように Apache を設定するにはどうすればよいか、

apache1.2.x以上なら
Files directiveで
<Files .namazurc>
        order allow,deny
        deny from all
</Files>
でいいとおもいます。

 > "*~", "*.bak" といったファイルについても、
 >見せないようにするにはどうすればよいのか、

apache1.2.x以上なら
<Files ~ "(~|.bak)$">
        order allow,deny
        deny from all
</Files>


1.3.x以降は<FilesMatch> directiveをつかえ、
とドキュメントにあります。
<FilesMatch "(~|\.bak)$">
        order allow,deny
        deny from all
</FilesMatch>
となります。

<Files>,<FilesMatch> ともに
server config, virtual host, .htaccess
で使用できる、とマニュアルにあります。


yoshihide hirose 
mailto:yoshihide@xxxxxxxxxx