문제

I am a newbee to CodeIgniter, I have a page which is called by http://www.example.com/pages/view/about

is it possible to just use http://www.example.com/pages/about

if yes how to do it?

thnak you for your help.

도움이 되었습니까?

해결책 2

you can overwrite your any URL by htaccess

or

edit your routes.php file in Codeigniter Config Folder (application -> config -> routes.php) to do this see this tutorial

Codeigniter Route tutorial

다른 팁

In your route.php,

$route["pages/(:any)"] = "pages/view/$1"

Caution: You can't call other functions. Pages controller should have only one method in this case.

You can use this in your routes.php:

$route['pages/(:any)'] = 'pages/view/$1'

This will work for only your pages controller. For all other controllers you need to define in the same way. You can also manipulate htaccess file for this.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top