.htaccess - url rewriting -- the url rewriting code giving "Object not found!" error -
i trying redirect website links
1, original link
- www.website.com/products.php?id=abcd12345
2, browser see
- www.website.com/products/abcd12345-something1-something2.html
so want redirect second link request first link -- present code giving "object not found!" error
below code in .htaccess file
rewriteengine on # turn on rewriting engine rewriterule ^(.*)products/([a-za-z0-9]+)(.*) $1/products.php?id=$2 [nc,l]
any thankful.
Comments
Post a Comment