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.
私はこのようなURLパターンを持っています。
site.com/page-name?variable-name=変数値
これを site.com/variable - 値にしたい
APIの書き換えが苦手です。.htaccess を案内してください。
これを試して
RewriteEngine On RewriteCond %{QUERY_STRING} ^(.*)=(.*) RewriteRule ^(.*) /%1-%2? [R,L]