Forum Moderators: coopster
PageRank = 6 and more than 300 backward links. But Google doesn't want index dynamic pages of my site. I've found one web resource, that introduce a PHP script, which convert dynamic URL's into static. [snip] - anybody use it?
[edited by: pageoneresults at 10:22 pm (utc) on June 15, 2004]
[edit reason] Removed URI Reference - Please Refer to TOS [/edit]
if you want to convert dynamic to static, use Mod_Rewrite (Check the Apache Forum)
# file .htaccess (nothing before the .)
RewriteEngine on
RewriteRule fsmain/(.*)/(.*) fsmain.php?cat_id=$1&subcat_id=$2
www.site.com/fsmain/myCat/someSUBcat
gets redirected to
www.site.com/fsmain.php?cat_id=myCat&subcat_id=someSUBcat