codeigniter 3 URL Remap -


i trying remap old urls http://www.example.com/ipranges.php?reqinfo=180.94.79.0-180.94.79.255 in codeigniter 3 not working. here route this. can help? thanks

$route['ipranges.php?reqinfo=/(:any)'] = "ipinfo/ipranges/$1"; 

-codeigniter using uri segments , , there "ipranges.php..." in routes not allowed , can't used in codeigniter. -in codeigniter url-> there 1st segment indicates controller ,second segment point method , third , on, parameters method. -so here url=> www.example.com/controller/method/parameter...... -if using routing,than can remap them -----www.example.com/slug

--here in routes.php $route['slug'] = "controller/method/$1";


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -