• I am looking to create a directory to store mp3 files that can be linked to from my posts. I setup directories under root similar to this: /mp3 and /mp3_talk

    I’m using permalinks so my .htaccess ends up as follows…
    </IfModule>
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    I know I need to add something in my .htaccess file so that a path such as http://www.mycoolwordpressweb123.com/mp3/ could be recognized.

    Any suggestions?

The topic ‘.htaccess for mp3 directory’ is closed to new replies.