wordpress 500 - Internal server error

Posted by asad on Stack Overflow See other posts from Stack Overflow or by asad
Published on 2010-06-15T13:17:26Z Indexed on 2010/06/15 13:32 UTC
Read the original article Hit count: 207

Filed under:

Hello Folks ,

I installed the wordpress 2.9.2 a few days ago and it works correctly. today , i want to use permlink feature of wordpress.

I know , must modify my .htaccess file on my site root. but on my sub-domain root there is no any .htaccess file . so i create my .htacess file with follow content on sub-domain root (near index.php file):

<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

But after save it , i missed my blog . And i get follow error :

500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed.

after this i remove the .htaccess file , but this was not correct.

What i can do for it?

Cheers

© Stack Overflow or respective owner

Related posts about Wordpress