• All of the links work on my blog except for the archive links and a link for the poll.

    Here is my .htacess file:

    RewriteEngine on
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^https://kiptip.com/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://kiptip.com$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://www.kiptip.com/.*$      [NC]
    RewriteCond %{HTTP_REFERER} !^https://www.kiptip.com$      [NC]
    RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ https://kiptip.com [R,NC]

    Custom Structure: /%category%/%monthnum%/%day%/%year%/%postname%
    Category base: category
    Tag base: tags
    Archives page: https://kiptip.com/archives/

    If go to https://kiptip.com/archives/ and click on “January 2009” it tries to open https://kiptip.com/01/2009/

    The poll archive url is: https://kiptip.com/pollsarchive

    Please help ??

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Busted URLs, mainly archives…’ is closed to new replies.