This useful tool allows you to convert your dynamic URLs into static looking html URLs, it is extremely easy to use, is than simple than entering a dynamic URL into a text box and press a submit button, once you do it the URL Rewriting Tool returns two type of results:
- Single Page URL
- Directory Type URL
The only bad thing about it, is that this tool only would work if your site is hosted on a linux server.
For example, if you enter into this tool the dynamic URL of the Astahost's View New Posts link which is:
http://www.astahost.com/index.php?act=Search&CODE=getnewThe URL Rewriting Tool returns with the following two results:
- Type 1 - Single Page URL
Generated URL
http://www.astahost.com/index-act-(Any Value)-CODE-(Any Value).htm
eg. http://www.astahost.com/index-act-Search-CODE-getnew.htm
.htaccess generated code
Options +FollowSymLinks
RewriteEngine on
RewriteRule index-act-(.*)-CODE-(.*)\.htm$ index.php?act=$1&CODE=$2 - Type 2 - Directory Type URL
Generated URL
http://www.astahost.com/index/act/(Any Value)/CODE/(Any Value)/
eg. http://www.astahost.com/index/act/Search/CODE/getnew/
.htaccess generated code
Options +FollowSymLinks
RewriteEngine on
RewriteRule index/act/(.*)/CODE/(.*)/ index.php?act=$1&CODE=$2
RewriteRule index/act/(.*)/CODE/(.*) index.php?act=$1&CODE=$2
Best regards,

