我有一个codeigniter的默认安装。在我的public_html文件夹(root)中,我创建了js文件夹。在里面,我有一个tinymce(Rich-Text编辑器)。在该文件夹下有一个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]
我的基本网址在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';
导致此错误的原因是什么?为什么它找不到并显示文件内容?在我看来,这是问题的根本原因。
提前致谢!!
答案 0 :(得分:1)
您可以在htaccess文件中尝试此条件
RewriteCond $1 !^(index\.php|js|images|robots\.txt)
答案 1 :(得分:0)
使用此:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
在config.php中
$config['index_page'] = ''; #remove index.php