在Wordpress中重写URL

时间:2010-03-03 09:42:11

标签: wordpress url-rewriting

我想在wordpress中重写我的网址。 我怎样才能在wordpress中重写我的网址。 我正在尝试创建htaccess文件,如下面的

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /shopboxtile/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([0-9]+)$ http://localhost/shopboxtile/?productid=$1
</IfModule>

我认为这不正确。请帮助我纠正它。 我的要求是转换网址 http://localhost/shopboxtile/?productid=59961http://localhost/shopboxtile/59961

1 个答案:

答案 0 :(得分:1)

尝试将其放入.htaccess文件夹

中的shopboxtile文件中
RewriteEngine On

RewriteRule ^([0-9]+)$ ?productid=$1 [QSA]