Support » Fixing WordPress » Error 500 when clicking a link

  • I have WP and BP running, and used this .htaccess to get it working:

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

    WP, and all it’s functions work fine – however, when clicking on a link in the sidebar, i get an ‘error500 – Internal Server Error’

    My site is http://www.thisismysite.com
    wp is installed in http://www.thisismysite.com/wp

    The link in WP is supposed to connect with a normal HTML page at the main site. Links from within the WP folder work – if the target is also inside the WP folder.

    I recently tried this .htaccess – but still no luck

    <files .htaccess>
    
    order allow,deny
    deny from all
    
    </files>
    
    ServerSignature Off
    
    <files wp-config.php>
    order allow,deny
    deny from all
    
    </files>
    
    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    </IfModule>
    
    # END WordPress
    
    Options All -Indexes
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php

    This is a real nightmare for me, and any help would be great!
    (Host: 1and1)

  • The topic ‘Error 500 when clicking a link’ is closed to new replies.