我收到一个错误 404 页面未找到,但它只发生在使用 ckeditor 上传文件和使用主机时的一个页面中。当我在它运行良好之前使用localhost时,我使用codeigniter。这与htaccess文件有关吗?任何建议为什么只发生在一页?谢谢你的建议。
这是我的 htaccess 文件:
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
这是我得到错误的网址:
http://www.myurl.com/AdminFolder/class/funcction
那是我的上传文件页面,我使用ckeditor。但是当我想上传 html 时,找不到错误 404 页面,但文件没有丢失。