我正在使用Codeigniter 3开发CMS,数据库是Adminer 4.1.0。
-文本编辑器:TinyMCE
-文件管理器:响应文件管理器
在文本编辑器中插入“ URL链接”或“图像”标签时遇到了问题。无论如何,当我只插入文本或项目符号时,就可以了。
该页面显示在下面。
Access Denied
You don't have permission to access "URL link" on this server.
Reference #18.c4641cb8.1542166531.bbf7384
我已经在浏览器中签入,它显示状态代码:403
这是我在newsEdit.php中的代码:
<form role="form" id="editNews" action="<?php echo base_url().'admin/newsEditSubmit/'.$news->id;?> " method="post" role="form">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label for="name"><?php echo label('newsContentEN'); ?></label>
<textarea name="content_en"><?php echo $news->content_en; ?></textarea>
</div>
</div>
</div>
我的htaccess:
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]