路线和配置继续 - 我击败了这两个,直到他们完全死了

时间:2012-03-02 20:27:55

标签: php codeigniter

我的网址曾经像

http://example.com/index.php/class/function/id

我创建了.htaccess并调整了配置文件,现在每个负载都没有看到index.php。我也想隐藏“类”,这样我的网址可能只会缩短,http://example.com/function/id。我想要这个,因为有时我的班级名字不漂亮,我不希望它在那里,谢谢你......

1 个答案:

答案 0 :(得分:1)

你知道你可以用htaccess重写类名,对吧?

RewriteRule ^prettyclass/function/([0-9]+)?$ uglyclass/function/$1 [L,NC]

否则,您必须在routes config ...

中指定每个URI的特定路由
$route['some_function/:num'] = 'uglyclass/function/$1';