Hi,
After playing a while, I finally got my .htaccess working to do a mod rewrite to translate dynamic links into static ones.
2 Examples >
a) show main page:
original link: http://mydomain.com/blog1/?option=mainPage
new static link: http://mydomain.com/blog1/mainPage.html
and
b) show a specific entry:
original link: http://mydomain.com/blog1/index.php?option=viewEntry&filename=00005
new static link: http://mydomain.com/blog1/viewEntry00005.html
My .htaccess to accomplish the above >
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^blog1/viewEntry([^/]*)\.html$ /blog1/index.php?option=viewEntry\&filename=$1
RewriteRule ^blog1/([^/]*)\.html$ /blog1/index.php?option=$1
I think it would be important to have user friendly urls to improve search engine positioning, do you agree ? I hope this helps.
John