我确信之前已经问过这个问题,但我找不到答案。这很简单,我敢肯定。我想拿一个像
这样的网址example.com/article/3xamp1e/Some-sort-of-title
并将其转换为
example.com/article?handle=3xamp1e
通过apache中的htaccess rewriteCond。
答案 0 :(得分:0)
这应该有效:
RewriteEngine On
RewriteCond %{THE_REQUEST} /article/([^/]+)/([^\s]+) [NC]
RewriteRule ^ /article?handle=%1 [NC,L,R]