.htaccess - How can we make use of query string in rewrite url using htaccess? -


actually have url abcd.html getting rewritten abcd.php using .htaccess=.

now passing query string abcd.html?id=100 , rewrite abcd.php?id=100.

how can that?

rewriterule abcd.html\?id=(\d+)   abcd.php?id=$1 

Comments

Popular posts from this blog

Python __call__ special method practical example -

arrays - jQuery - Retrieve values from HTML elements and return their sum -