私はnginxでリライトを作成しようとしていますが、正しく機能していないようです...
私がやろうとしていること:
リライト:
bleh.com/productPage/productname/?action=yes&id=12
に:
bleh.com/productPage/index.php?product=productname&action=yes&id=12
私がこれまでに得た最も近いものは次のとおりです。
location / {
rewrite ^/productPage/(.*)/(.*)$ /productPage/index.php?$1 last;
}
location ~ \.php$ {
fastcgi_index ... (and the rest of the working fastcgi config)
しかし、私は404を打っているだけです。
どんな助けでもいただければ幸いです。