Blubrry Podcasting Community Forum

Hey Blubrry => Blubrry PowerPress WordPress Plugin => Topic started by: sockmonkeysound on July 25, 2012, 12:50:43 pm

Title: 301 redirect: Did I do this right?
Post by: sockmonkeysound on July 25, 2012, 12:50:43 pm
Did I write this correctly?

Code: [Select]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^kryptonitebar.com/feed/getting-down-to-business http://chriswachowiak.com/feed/getting-down-to-business/[L,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
Title: Re: 301 redirect: Did I do this right?
Post by: angelo on July 25, 2012, 02:11:52 pm
That is not correct. If you save and try it you'll see it does not work. What are you trying to achieve?
Title: Re: 301 redirect: Did I do this right?
Post by: sockmonkeysound on July 26, 2012, 11:37:59 am
I'm trying to apply a 301 redirect via the .htaccess. I've been to the podcast FAQ and trolled the boards but I'm having a hard time find what the code should look like. There's plenty of talk about redirects but I don't see a good visual tutorial on this. Maybe I'm making it harder than it actually is.

How do I fix the above code to accomplish my feed redirect?