我有一个使用 CodeIgniter 的工作网页。我现在只是将它上传到我的网络服务器,它给了我一个 404 错误。
浏览器地址为“web-page.com/folder/en/about”
配置中的baseurl是“网页/文件夹/”
这也在 config.php 中,我确实尝试了 AUTO,但它也不起作用。
$config['index_page'] = "";
$config['uri_protocol'] = "QUERY_STRING";
index.php 在“web-page.com/folder/”中
我的 htaccess 在“web-page.com/folder/.htaccess”中
.htaccess 的内容是
AddCharset utf-8 .css .html .xhtml
Options +FollowSymlinks
RewriteEngine on
RewriteBase /folder/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond $1 !^(index\.php|images|media|layout|css|libs|robots\.txt)
RewriteRule ^(.*)$ /folder/index.php?/$1 [L]
你有任何提示,任何想法,我可以尝试做什么?我确实检查了所有权利,即使使用 777 它也不起作用。
提前致谢。
卢卡斯