cookie
01-29-2006, 02:31 AM
I'm sure all of you developers know what mod_rewrite is for apache and I'm sure all of you know what it can do.
With some entries to your .htaccess file you can use mod-rewrite to point incoming request to different pages. For example the following rewrite rule
RewriteRule ^forumdisplay_([0-9]+).html forumdisplay.php?f=$1 [L]would point the following search engine safe urlhttp://www.your-domain.com/forumdisplay_1.htmlto this onehttp://www.your-domain.com/forumdisplay.php?f=1and load the first forum on your site.
It would be nice to see this feature added to vBadvanced. It is yet another step in making your software even more search engine friendly.
With some entries to your .htaccess file you can use mod-rewrite to point incoming request to different pages. For example the following rewrite rule
RewriteRule ^forumdisplay_([0-9]+).html forumdisplay.php?f=$1 [L]would point the following search engine safe urlhttp://www.your-domain.com/forumdisplay_1.htmlto this onehttp://www.your-domain.com/forumdisplay.php?f=1and load the first forum on your site.
It would be nice to see this feature added to vBadvanced. It is yet another step in making your software even more search engine friendly.