htaccess url rewriting
URL rewriting is very popular these day following are step you can use for url rewriting:
1)Rewriting test.php?id=12 to test -12.html
It is a simple redirection in which .php extension is hidden from the browser’s address bar and dynamic url (containing “?” character) is converted into a static URL.
RewriteEngine on RewriteRule ^test-([0-9]+)\.html$ test.php?id=$1
2) Rewriting test.php?id=12 to test /ipod-nano/12.html
SEO expert always suggest to display the main keyword in the URL. In ...