1

我想知道如何告诉 wordpress 重写以忽略特定页面,例如:index.php?p=15 我尝试了几件事,例如:

RewriteCond %{REQUEST_FILENAME}!^/index.php?p=15 !-d

或者尝试在 wordpress 规则等之前指定规则,但到目前为止还没有任何结果。

关于如何完成这项工作的任何想法?

4

1 回答 1

0

我试过下面的代码,它似乎工作正常:

RewriteCond %{REQUEST_URI}:::%{QUERY_STRING} !test\.php:::p=15$
RewriteRule . /index.php [L]

一切都重定向到/index.php除了test.php?p=15.

于 2012-12-13T14:04:06.527 回答