2011-06-14, 11:12 PM
I just thought I would post this here in case it would help anyone else. I had a discussion with faviouz in another thread that made me decide to do it this way instead of the way I was trying to originally.
For the Google SEO plugin I changed the following in the admin area
All other settings in the admin area I left the same.
Then just update your .htaccess:
That makes it so that all topics on your forum will be like "yourdomain.com/the-topic-name.html"
And forums will be like "yourdomain.com/New-Member-Intros-Forum"
Since topics don't have any prefix you need to make sure that you have them end in ".html" so that it doesn't conflict with anything else on the forum.
For the Google SEO plugin I changed the following in the admin area
Quote:Forum URL scheme = {url}-Forum
Thread URL scheme = {url}.html
All other settings in the admin area I left the same.
Then just update your .htaccess:
RewriteRule ^([^./]+)-Forum$ forumdisplay.php?google_seo_forum=$1 [L,QSA,NC]
RewriteRule ^([^./]+).html$ showthread.php?google_seo_thread=$1 [L,QSA,NC]
That makes it so that all topics on your forum will be like "yourdomain.com/the-topic-name.html"
And forums will be like "yourdomain.com/New-Member-Intros-Forum"
Since topics don't have any prefix you need to make sure that you have them end in ".html" so that it doesn't conflict with anything else on the forum.