且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

htaccess重写url之类的url

更新时间:2023-02-24 09:52:09

您需要通过使斜杠为可选来对正则表达式进行一些调整.使用以下规则:

You need to tweak your regex a bit by making trailing slash optional. Use this rule:

RewriteRule ^([0-9]+)(?:/([^/]*))?/?$ ./cat.php?id=$1&title=$2 [L,NC]