重写$ _GET的路径

时间:2014-09-18 13:59:55

标签: nginx rewrite

我想重写一遍:domain.com/foobar改为domain.com?p=foobar

我不需要子目录或多个变量。

我正在使用nginx,而其他大多数答案都不是我想要的,或者是apache。

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

我能够使用location / {}块中的以下规则来解决它:

rewrite ^(.*)$ /index.php?p=$1 last;