htaccess rewrite url like Stack Overflow

后端 未结 2 1515
时光说笑
时光说笑 2021-01-14 20:24

Stack Overflow generates rewrite URLs,

so i need to know how i can do it like Stack Overflow?

http://stackoverflow.com/questions/9168364/how-to-rewri         


        
2条回答
  •  情深已故
    2021-01-14 20:50

    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]
    

提交回复
热议问题