CodeIgniter:是否可以删除控制器&使用路由或.htaccess从URL中进行操作?

时间:2011-08-17 14:12:09

标签: php .htaccess codeigniter

我有一个由名为“pages”的表组成的数据库。 我有一个名为“site”的控制器和一个名为“page”的函数...... http://website.com/site/page/page_id

在页面函数中,它当前查找第3个URI段(page_id),然后查找并将其与数据库中的页面行匹配,并显示行结果。

我的问题是,是否可以将我的网址从http://website.com/site/page/page_id发送/更改为 http://website.com/page_id。然后明显改变我的函数来找到第一个URI段?

我当前的.htaccess文件删除了“index.php”,如下所示:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /db

#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
#This last condition enables access to the images and css folders, and the robots.txt file
#Submitted by Michael Radlmaier (mradlmaier)
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
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>

1 个答案:

答案 0 :(得分:1)

看看this article。在应用程序配置中编辑routes.php应该可以解决问题。这样的事情应该有效:

$route['(:any)'] = 'site/page/$1';

但是,如果使用其他控制器,则可能需要做更多工作(我假设“site”是您的控制器,即site.php位于应用程序/控制器中)。

在代码中,如果您的网页ID仅为数字,则可能还会考虑使用:num代替:any