0

私はデフォルトで codeigniter をインストールしています。public_html フォルダー (ルート) に js フォルダーを作成しました。その中に tinymce (リッチテキスト エディター) があります。そのフォルダーの下に tinymce.min.js ファイルがあります。これをブラウザに入力すると、ファイルの内容が表示されません。

http://mydomain.com/js/tinymce/tinymce.min.js

codeigniter 404 エラーページが表示されます。私の .htaccess にはこれがあります:

# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

私のベース URL は config.php で定義されています。

$config['base_url'] = 'http://www.mydomain.com/';

/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = 'index.php';

このエラーの原因は何ですか? ファイルの内容を見つけて表示できないのはなぜですか? これが私の見解では問題の根本原因です。

前もって感謝します!!

4

2 に答える 2

1

htaccessファイルでこの条件を試すことができます

RewriteCond $1 !^(index\.php|js|images|robots\.txt)
于 2013-09-27T08:26:32.467 に答える