我的网址曾经像
http://example.com/index.php/class/function/id
我创建了.htaccess并调整了配置文件,现在每个负载都没有看到index.php。我也想隐藏“类”,这样我的网址可能只会缩短,http://example.com/function/id。我想要这个,因为有时我的班级名字不漂亮,我不希望它在那里,谢谢你......
答案 0 :(得分:1)
你知道你可以用htaccess重写类名,对吧?
RewriteRule ^prettyclass/function/([0-9]+)?$ uglyclass/function/$1 [L,NC]
否则,您必须在routes config ...
中指定每个URI的特定路由$route['some_function/:num'] = 'uglyclass/function/$1';