having trouble with a mod_rewrite rule
        Posted  
        
            by Jeff
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Jeff
        
        
        
        Published on 2010-03-28T19:18:53Z
        Indexed on 
            2010/03/28
            19:23 UTC
        
        
        Read the original article
        Hit count: 262
        
mod-rewrite
want to rewrite urls like site.com/software to wp-content/themes/dir/software.php and something is not working.. Here's what I have:
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteRule ^software wp-content/themes/dir/software.php [L]
Thanks!
© Stack Overflow or respective owner