Bibek Jana
Bibek Jana

Reputation: 104

changes need in url manager in yii

I have a url www.xy.de/glossar/anzeigen-programming

I want to use this url as www.xy.de/anzeigen-programming.

Last parameters are a variable. I want to show content after searching from database respect to last parameter.In urlmanager what have to do?

Upvotes: 0

Views: 41

Answers (1)

emte
emte

Reputation: 647

you can update your routes in config file. Simply add something like this:

'glossar/<page:\w+>' => '/',

more info about routes could be found here

Upvotes: 1

Related Questions