开发者

how i can do /var?section=value by .htaccess

开发者 https://www.devze.com 2023-02-20 18:42 出处:网络
开发者_运维技巧i want to make this url site.com/var?section=value example: esite.com/PHP?section=articles

开发者_运维技巧i want to make this url

site.com/var?section=value

example:

esite.com/PHP?section=articles

the php is varibale and the php file is

file.php?lang=php&section=articles


Something like this maybe:

RewriteRule ^(.*?)\?section=(.*)$  file.php?lang=$1&section=$2  [NC,L]
0

精彩评论

暂无评论...
验证码 换一张
取 消