我在我的项目的某些模块中使用了FCKEditor,当时我在我的网址中使用了index.php
,但当我删除index.php
时,FCKEditor从页面中消失,它没有显示任何错误FCKEditor的位置显示为空白
任何想法???
$fckeditorConfig = array('instanceName' => 'fckcontent',
'BasePath' => base_url().'systemfiles/plugins/FCKeditor/',
'ToolbarSet' => '',
'Width' => '600',
'Height' => '370',
'Value' => $this->input->post('fckcontent'));
$this->load->library('fckeditor', $fckeditorConfig);
答案 0 :(得分:1)
第一步:制作.htaccess
#RewriteBase /
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L]
用户指南: http://ellislab.com/codeigniter/user-guide/general/urls.html
第二步:编辑config \ config.php并设置base_url()
$config['base_url'] = '';
并删除索引页
$config['index_page'] = '';
第三步:不要使用fckeditor,使用ckeditor