Hi everybody , i'am new to URL Rewriting i have a website with link like this http://www.mysite/comment.php?ID=31&Title=test-rewriting PHP: and want to make it appear like http://www.mysite/31-test-rewriting.html PHP: Thanks
Why not google for "htaccess rewrite tool"? There are a lot of tools that can generate a rewritten URL in different formats.
If you have had no luck with this then try ^([0-9]+)-([0-9a-zA-Z]+)\.html$ So add this to your .htaccess RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([0-9]+)-([0-9a-zA-Z]+)\.html$ comment.php?ID=$1&Title=$2[L, QSA]