One more thing Jeff, I also need to get mysite.com/forums/my-content/ redirected to
www.mysite.com/forums/my-content/
At this time if I use the following in my .htaccess, i get a 404 not found error for mysite.com/forums/my-content/ but it works fine for
www.mysite.com/forums/my-content/ Any ideas?
Code:
RewriteEngine On
RewriteRule ^(.*)t([0-9]+)(.*)newpost(.*)$ showthread.php?t=$2&goto=newpost [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/post([0-9]+)(.*)$ showpost.php?p=$6 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)/([a-z]+)([0-9]+)(.*)$ showthread.php?t=$4&page=$7 [QSA,L]
RewriteRule ^(.*)f(.*)/(.*)t([0-9]+)(.*)$ showthread.php?t=$4 [QSA,L]
RewriteRule ^(.*)f([0-9]+)/([a-z]+)([0-9]+)(.*)$ forumdisplay.php?f=$2&page=$4 [QSA,L]
RewriteRule ^f([0-9]+)(.*)$ forumdisplay.php?f=$1 [QSA,L]
RewriteRule ^(.*)-f([0-9]+)(.*)$ forumdisplay.php?f=$2 [QSA,L]
RewriteCond %{HTTP_HOST} !^www.club-oracle.com$ [NC]
RewriteRule ^(.*)$ http://www.club-oracle.com/$1 [R=301]
RewriteCond %{HTTP_HOST} !^www.club-oracle.com$
RewriteRule ^(.*)$ http://www.club-oracle.com/$1 [R=301]
Thanks