0
我有一堆/promo
就像是超出WordPress的境界到一個自定義的PHP頁面的網址。但是使用WordPress中的默認重寫規則,它會將所有請求重定向到它自己的404頁面。WordPress的永久鏈接劫持我的自定義網址到登陸頁
我希望能夠將/promo
重定向到http://domain.com/subdir/index.php?flag1=foo&flag2=bar
。 WordPress默認的.htaccess低於:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
我如何去這樣做呢?