htaccess voodoo needed

Status
Not open for further replies.

ArtDeco

Ex-lurker
Sep 23, 2007
622
6
0
PA USA
www.roadstersandragtops.com
I bought an old blog where the pages were indexed in G like this

domainname.com/keywordphrase.php

and I am setting it up as a wpmu blog farm using subdomains like this

keywordphrase.domainname.com. with new content but same keywords

I would like G to see the new page automagically when it crawls the site.
So far I just have the default htaccess like this:

RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]What should I be putting in there to make the redirects work before I get this all FUBARed ?
 


Status
Not open for further replies.