こんにちは皆さん、ヘルプが必要です。アプリケーション 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]