clean URL using .htaccess

前端 未结 3 516
闹比i
闹比i 2021-01-14 21:09

I\'m trying to redirect the links on my domain. What I\'m trying to achieve is: When the user clicks on a link to

mydomain.com/index.php?dir=myfolder

3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-14 21:43

    Just append this rule at the end of your existing .htaccess file:

    RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?dir=([^\s]+) [NC]
    RewriteRule ^ %1? [R=301,L]
    

提交回复
热议问题