Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的网址模式。
site.com/page-name?variable-name=变量值
我希望这是 site.com/variable - 值
我不擅长重写 api。请指导我完成 .htaccess。
尝试这个
RewriteEngine On RewriteCond %{QUERY_STRING} ^(.*)=(.*) RewriteRule ^(.*) /%1-%2? [R,L]