1

私は Kohana 3.2 フレームワークを使用しています。標準の .htaccess ファイルをアプリケーションの同じフォルダーに配置しました。

私の .htaccess ファイルは

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /mysite/

# 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/$0
RewriteRule ^(.*)$ /index.php/$0 [PT,L]
RewriteRule ^(.*)$ /index.php/$0 [PT,L,QSA]
RewriteRule .* /index.php/$0 [PT]  -  [PT,L]  -  [PT,L,QSA]

しかし、それはまだ示しています

見つかりません

要求された URL /index.php/login がこのサーバーで見つかりませんでした。

The complete path of the app is /var/www/es/ec/mysite

The complete working URL is http://10.0.0.1/ec/mysite/index.php/login

The complete NOT working URL is http://10.0.0.1/ec/mysite/login

また...

Running in Apache 2.2.3 over CentOS 5

何か案が???

4

3 に答える 3

1

わかった!!

アプリが他のフォルダー内にある場合の実行方法を次に示します。

The complete path of the app is /var/www/es/ec/mysite

The complete working URL is http://10.0.0.1/ec/mysite/index.php/login

The complete NOT working URL was http://10.0.0.1/ec/mysite/login

/var/www/es/ec/mysite/application/bootstrap.php では、Kohana::init はこのままです

Kohana::init(array(
    'base_url'   => '/ec/mysite/',
    'index_file'   => FALSE,
    'charset' => 'ISO-8859-1',
));

そして、このような.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 .* /ec/mysite/index.php/$0

これが他の人に役立つことを願っています!

乾杯!

于 2012-10-30T13:49:16.003 に答える
0

私のKohana .htaccessファイルを試すことができます

# Set environment
SetEnv KOHANA_ENV "development"

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Kohana 3.2も使用しています。この書き直しは、私のプロジェクトのほとんどでうまくいく傾向があります。

それがどのように機能するか教えてください!

于 2012-10-29T18:15:58.220 に答える
0

Kohana::init セット内の bootstrap.php で 'index_file' => '',

于 2012-10-29T19:37:42.957 に答える