Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

php - How to remove Controller and function name from URL in CodeIgniter

I am having a serious issue with one application developed in CI. Currently my URLs look like this

http://www.example.com/content/index/mission/

I want to remove /content/index/ from URL So, It should look something like this.

http://www.example.com/mission

I have routing and .htaccess method as well. But nothing seems to be working.

Here is my .htaccess file

Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index.php|images|css/js/style/system/feature_tab/robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [QSA,L]

I have also tried routing of CI by defining reouters in config/router.php But it was not working :(

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

For your specific example, you'll want to create a route (in application/config/routes.php) that maps

$route['mission/']

to

"content/index/mission"

In other words, $route['mission/'] = "content/index/mission";

See the CI documentation regarding URI routing for more info


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...