我在codeigniter中遇到了一个不同的问题。
当我尝试访问我网站中的视频页面时,它会重定向到404.shtml页面。但是cvideos.php文件存在于我的控制器文件夹中。
如果我像http://domain-name/videos一样访问,那么它将被重定向 //domain-name/500.shtml
如果我像这样访问同一页面//域名/视频/ myvideos,那么它将被重定向到这样 //domain-name/404.shtml
此外,如果我将控制器名称从视频更改为其他名称,如视频,它可以正常工作。谁能告诉wats这个问题。
我在.htaccess中使用此行也仅用于测试。但没用。
RewriteRule ^ videos / $ index.php / videoss / [L]
答案 0 :(得分:5)
您的控制器必须与其包含的类名称相同。
因此 -
<?php
controller Videos extends Controller {
/* bla */
}
?>
应保存为:
“controllers”目录中的 videos.php
。
其他任何东西都不会起作用。
你的重写规则也有两个“s”,但这可能是故意的。
看起来你正在试图用.htaccess来实现CI routing
编辑:.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
请注意我没有创建这个 - 它是通过搜索CI论坛找到的。然而,这是一个相当彻底的htaccess。
不要忘记在配置中将“index.php”的值设置为“”。
答案 1 :(得分:2)
base_url区分大小写
localhost / site / controller = c:... \ site
localhost / SITE / controller = c:... \ SITE
答案 2 :(得分:0)
将CI网站从WAMPP转移到其他人制作的LAMPP时,我遇到了类似的问题。似乎WAMPP被配置为不区分大小写,因为当我将所有控制器/模型/视图文件名和包含控制器/模型/视图名称的所有php字符串转换为小写时,它完美地工作。
答案 3 :(得分:0)
确保您的根目录中没有遗漏.htaccess
文件。或检查其准确性。确保在uri_protocol
。
base_url
和config.php
示例,我在这里复制我的.htaccess
文件
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /your_dir
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
我用它来删除网址中的index.php
。