Reputation: 1577
how can I rewrite this kind of url in nginx
http://example.org/index.php?p=discussion/7/topic
into this
http://example.org/discussion/7/topic
I used location
/forum {try_files $uri $uri/ @forum;}
location @forum {rewrite ^/forum(.+)$ /forum/index.php?p=$1 last;}
Thank you for advices :)
Upvotes: 0
Views: 40
Reputation: 1577
Problem solved. Rewrite url from Srgrn was right, I was just dumb and didn't check my routes to CSS. Thank you.
Upvotes: 1