01.
# Turn on URL rewriting
02.
RewriteEngine on
03.
04.
# Put your installation directory here:
05.
#If root directory
for
domain is started
as
sub-directory Example => www.domain.com/rewrite/
06.
#RewriteBase /rewrite/
07.
#If root directory
for
domain is started
as
root-directory Example => www.domain.com
08.
RewriteBase /
09.
10.
# Rewrite all other URLs to index.php/URL
11.
RewriteRule ^([0-9]+)/(.+)\.html$ post.php?id=
$1
&title=
$2
[NC]