如何从带有参数的url中删除.html?
例如:
http://www.domain.com/somepage.html?argument=whole&bunch=a-lot
至:
http://www.domain.com/somepage?argument=whole&bunch=a-lot
我试过了
location / {
index index.html index.PHP;
rewrite ^\.html(.*)$$1 last;
try_files $uri $uri/ @handler;
expires 30d; ## Assume all files are cachable
}
和一堆其他建议,但似乎无法使其工作….
TNX
最佳答案
原文链接:https://www.f2er.com/nginx/435722.html