.htaccess:重写URL的规则[重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess:重写URL的规则[重复]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
如何使用.htaccess
更改网址
https://example/userdetail.php?pn=1&order=user_id&sort=ASC&search=null
至
https://example/userdetail/1/user_id/ASC/null/
答案
如果你有MVC那么你可以这样使用:
Url:
<a href="/controllerName/1/user_id/ASC/null">
制作路线,然后
Controller:
class controllerName extends Controller {
public function index($ph, $order, $sort, $search){
}
}
以上是关于.htaccess:重写URL的规则[重复]的主要内容,如果未能解决你的问题,请参考以下文章
友好的 URL htaccess 重写规则正则表达式 [关闭]
使用 .htaccess 重写 URL 会产生重复的 mysql 条目
如何在 .Htaccess 中禁用/不允许共享主机 RewriteLog 时,在 Apache 2 中模拟和测试 URL 重写规则?