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.
domain.com/index.php?page=home次のURLを書き換えるためにnginxに設定を書き込むにはどうすればよいですか:domain.com/index.php?page=m-home
domain.com/index.php?page=home
domain.com/index.php?page=m-home
if ($args ~* (.*)(page=home)(.*)){ set $args $1page=m-home$3; }
rewrite ^/index.php?page=(.+?)&(.*)$ /index.php?page=m-$1&$2 break;
rewrite ^/index.php?page=m-(.*) /index.php?page=$1 last;