我想调用codeigniter控制器类函数,就像这样。但这不起作用 我想从URL
中删除index.php
使用index.php这很有效如何从url中删除index.php?
我改变了
$config['index_page'] = 'index.php';
到
$config['index_page'] = '';
但是没有用
答案 0 :(得分:7)
您必须完成两项工作才能从URL中删除index.php。
第一份工作 -
更改了配置文件
$config['index_page'] = 'index.php';
要
$config['index_page'] = '';
(你已经完成了)
第二份工作 -
您必须在根目录中添加.htaccess文件,并确保启用了php mod_rewrite。
有关详细信息,请参阅RewriteRule文档。
RewriteEngine on
RewriteRule ^([a-z0-9_-]+)\.html$ index.php/page/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|asset|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
试试吧。希望它有效,让我知道最新情况。
答案 1 :(得分:3)
使用以下内容在根目录中创建.htaccess文件
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
使用.htaccess的一个很好的示例列表可以在http://www.askapache.com/htaccess/modrewrite-tips-tricks.html
找到答案 2 :(得分:1)
在根目录中添加此.htaccess文件。
RewriteEngine on
RewriteRule ^([a-z0-9_-]+)\.html$ index.php/page/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|asset|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
试试这段代码。 感谢。
答案 3 :(得分:1)
如果您使用xampp
,请在以下位置创建htaccess文件“htdocs / codeigniter / .htaccess”
然后输入htaccess内容
答案 4 :(得分:0)
对$config['index_page']
的更改是正确的,但您还需要做一件事:
您必须在codeigniter根目录中使用.htaccess
文件重新设置对index.php
文件的所有调用,而无需在网址栏中显示index.php
我的文件如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
### Canonicalize codeigniter URLs
# If your default controller is something other than
# "welcome" you should probably change this
RewriteRule ^(welcome(/index)?|index(\.php)?)/?$ / [L,R=301]
RewriteRule ^(.*)/index/?$ $1 [L,R=301]
# Removes trailing slashes (prevents SEO duplicate content issues)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ $1 [L,R=301]
# Enforce www
# If you have subdomains, you can add them to
# the list using the "|" (OR) regex operator
RewriteCond %{HTTP_HOST} !^(www|subdomain) [NC]
RewriteRule ^(.*)$ http://www.YOURSITE.COM/$1 [L,R=301]
# Enforce NO www
#RewriteCond %{HTTP_HOST} ^www [NC]
#RewriteRule ^(.*)$ http://YOURSITE.COM/$1 [L,R=301]
###
# 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]
# 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>
# Without mod_rewrite, route 404's to the front controller
ErrorDocument 404 /index.php
</IfModule>
此文件还会重新定位所有非www次调用(例如YOURSITE.com
至www.YOURSITE.com
。您也可以通过其他方式执行此操作,然后您必须对部分进行评论(使用#
)并且不推荐它下面的部分。
此外,它使网址更好(canocalized URL)。如果你看一下以下的URL:
/category
/category/index
/category/index/
对于同一控制器中的相同功能,这是3个url。使用上面提供的.htaccess
,网址将为
/category
另一个需要注意的重要事项是:对于采用index
方法的控制器,它采用任何类型的参数,这些URL仍然可以正常工作:
/welcome/index/123
/category/index/123