0

こんにちは皆さん、ヘルプが必要です。アプリケーション Kohana で使用し、メディアと呼ばれるルート フォルダーを作成して imgs、css、および js にアクセスできるようにしたいので、サイトが機能するための URL なしでアクセスを保護したいのですが、それを行っていますか?

例:

  • アプリフォルダー
  • システムフォルダー
  • モジュールフォルダー
  • メディアの新しいフォルダー(このフォルダーを保護する必要があります)
  • index.php

ルートの私のファイル .htaccess は次のとおりです。

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /

# Protect hidden files from being viewed
<Files .*>
    Order Deny,Allow
    Deny From All
</Files>


# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]



# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d




# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
4

1 に答える 1

0

あなたはホットリンクについて話している

.htaccess で 403 Forbidden を返します (example.com がドメイン名であると仮定します):

RewriteEngine On 
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com/ [NC] 
RewriteCond %{HTTP_REFERER} !^$ 
RewriteRule \.(jpe?g|gif|bmp|png|js|css)$ - [F] 

ここに特別なジェネレータがあります: http://www.htaccesstools.com/hotlink-protection/

于 2012-11-12T16:00:17.150 に答える