我有一个如下所示的网址: example.com/index.php?p=blog&category=blog&article=blog-test
但是我希望看起来像: example.com/blog/blog/blog-test
我怎么能用htaccess做到这一点?
答案 0 :(得分:0)
您可以使用.htaccess:
RewriteEngine on
RewriteRule ^(.+?)/(.+?)/(.+)$ index.php?p=$1&category=$2&article=$3 [L]