tags:

views:

27

answers:

1

Im new to mod rewriting. Could some one tell me how to change this url

ttp://example.com/blog/index.html?page=1

to

ttp://example.com/blog/page/1

Thanks a bunch! Kohei

+2  A: 

RewriteEngine on

RewriteBase /blog/

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.html?page=$1 [L,QSA]

try the above lines in your .htaccess

coder