안녕하세요 I는 Kohana 기반 스크립트를 설치하려고하지만 오류가 이미지시스템 Direcotry이
에서 위 참조 무엇입니까 존재하지 않습니다 제거하고 내가 무엇을해야하는지 찾을 수 없습니다 어떻게하지만 나는 그들이 3 단계 실행을 설치
OPE을했다 스크립트 소유자에 따라이
SetEnv KOHANA_ENV development
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Disable directory listing
Options -Indexes
<IfModule mod_rewrite.c>
# 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]
RewriteRule .* index.php [PT]
# Remove trailing slash
# RewriteRule ^(.*)\/(\?.*)?$ $1$2 [R=301,L]
# RewriteRule ^(.+)/$ /$1 [R=301,L]
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule ^(.+)/$ $1 [L,R=301]
</IfModule>
<IfModule mod_php5.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>
를 htaccess로 관련이 고소 있습니까 N htaccess로하고 다음과 같이 변경 :
올바른 RewriteBase
을 설정하지만 난 무엇을 쓸하고 무엇에 편집 할 수있는 내가 그것을
화면에 잘못된 웹 구성이 아니라 디스크 오류가 표시됩니다. – bato3