Forum Moderators: phranque
I was hoping to achieve this using .htaccess:
When user accesses this:
[mydomain.com...]
he will be redirected to this:
[mydomain.com...]
TIA
This .htaccess rule, modified from one discussed just this week, should get you started:
RewriteRule ^([0-9]+)$ /pageview.php?dbid=$1 [L]
Jim