• Hallo, i’ve setup a wp blog with permalink active, all works fine, but if i want put an external rss scroller on my site, when i click on a news, the link is brocker, instead of http://www.sitenews.com/news111 i will have http://www.mysite.com/http://www.sitenews.com/news111.

    here is my structure:

    / –> root
    .htaccess
    index.php
    wp —> wordpress folder
    rss —> the folder with my rss scroller

    here is my .htaccess file (created by wordpress):

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    someone can help me to EXCLUDE the rss folder from rewriting??

    thanks guys

The topic ‘problem with .htaccess and external rss’ is closed to new replies.