URL rewriting in Wordpress
Posted
by Ajith
on Stack Overflow
See other posts from Stack Overflow
or by Ajith
Published on 2010-03-03T09:42:11Z
Indexed on
2010/06/03
19:04 UTC
Read the original article
Hit count: 179
Wordpress
|url-rewriting
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
© Stack Overflow or respective owner