标签: nginx rewrite
我想重写一遍:domain.com/foobar改为domain.com?p=foobar。
domain.com/foobar
domain.com?p=foobar
我不需要子目录或多个变量。
我正在使用nginx,而其他大多数答案都不是我想要的,或者是apache。
我怎样才能做到这一点?
答案 0 :(得分:0)
我能够使用location / {}块中的以下规则来解决它:
location / {}
rewrite ^(.*)$ /index.php?p=$1 last;