我想在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=59961
至http://localhost/shopboxtile/59961
答案 0 :(得分:1)
尝试将其放入.htaccess
文件夹
shopboxtile
文件中
RewriteEngine On
RewriteRule ^([0-9]+)$ ?productid=$1 [QSA]