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
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
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