Hello,
I wanted to rewrite this url
news/any_file-name-1-9?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+homeinteriors+(Design+Interior)
To
news/any_file-name-1-9.html
I wrote
location = /news {
if ($args ~ ^ utm_source) {
set $args “”;
}
}
OR
location ~* ^.+.(htm|html)$ {
if ($args != “”) {
set $args “”;
}
But it doesn’t work
Can anyone help me? Let me know what I’m doing wrong
Posted at Nginx Forum: