如何使用 url 管理器为 Yii $_GET 方法制作 seo url?

How to make seo url for Yii $_GET method using url manager?

我正在本地服务器上的网站上工作。我制作了一个表格来搜索国家、州和城市。得到结果后,我看到 URL 格式为 URL

我想将此 URL 设为 URL

所以在这里我想了解 URL 经理规则,以便我可以随心所欲地制定它。

只需将此规则添加到您的 url-manager

"site/searchme/<country>/<state>/<city>" => "site/searchme"

现在,您需要使用此签名执行操作:

public function actionSearchme($country, $state, $city)

您可以在此操作中从 url 访问 $country$state$city。例如,如果您的 url 类似于 http://localhost/yii_1/site/searchme/UnitedStates/Washington/NewYork,则 $country 将等于 "UnitedStates" 等等。