.htaccess fix for a pretty permalink in PHP?

后端 未结 1 1616
梦毁少年i
梦毁少年i 2021-01-07 10:04

Maybe I\'m going about this in the wrong way, but I have some pages in our homegrown CMS that I want to convert to using pretty permalinks. Currently, their page URLs look t

相关标签:
1条回答
  • 2021-01-07 10:55

    If there's nothing in the query string you can omit QSA:

    RewriteRule articles/(.+) articles/?permalink=$1 [QSA,L,B]
    
    0 讨论(0)
提交回复
热议问题