Reputation: 7109
I want to rewrite my url in wordpress. How can i rewrite my url in wordpress. I am trying to create htaccess file like following
<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>
I think it is not correct.please help me to correct it.
My requirement is to convert url from
http://localhost/shopboxtile/?productid=59961
to http://localhost/shopboxtile/59961
Upvotes: 0
Views: 1011
Reputation: 123917
Try and put this in .htaccess
file in shopboxtile
folder
RewriteEngine On
RewriteRule ^([0-9]+)$ ?productid=$1 [QSA]
Upvotes: 1