Podpress and htaccess
-
I’ve posted my first podcast and it’s working fine — http://marriagevowworkbook.com/blog. My problem is getting the correct feed address so I can publish at iTunes and such. I’ve read the info at http://codex.wordpress.org/Podcasting, yet am not sure of two things.
1. Where to put the rewrite info in the htaccess file. Right now my file has these rules:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress2. If I’ve configured the rewrite rules correctly. All my podcast files will be in the “podcasts” directory.
#podcast rewrite
RewriteRule ^podcasts/?$ /podcasts/index.php?category_name=podcasts [QSA,L]
RewriteRule ^podcasts/feed/(atom|rss2)/?$ /podcasts/index.php?feed=$1&category_name=podcasts [QSA,L]
The topic ‘Podpress and htaccess’ is closed to new replies.