我可以优化这些线吗?
RewriteRule ^contact/$ index.php?page=contact [L,QSA] RewriteRule ^service/$ index.php?page=service [L,QSA] RewriteRule ^ads/$ ads.php$1 [L,QSA] RewriteRule ^posts/$ posts.php$1 [L,QSA]
答案 0 :(得分:3)
你可以推广“页面”的东西。请记住,在大多数情况下,可维护性比较少的行更重要。你不应该过度。
RewriteRule ^ads/$ ads.php$1 [L,QSA]
RewriteRule ^posts/$ posts.php$1 [L,QSA]
RewriteRule ^([^/]+)/$ index.php?page=$1 [L,QSA]
我的修改是这样的:它寻找任何特定的路线。如果没有匹配项,则最后一条规则将作为后备广告并将页面名称附加到index.php?page=
。