Hi All,
I'm using WordPress 2.3.1 and made a big mistake. Since I wanted to add a custom link to the pages menu I figured out that by adding a blank page and then creating a redirection from cPanel will give me the same effect. Well, in theory it should work but after trying it my whole blog gives me a 500 internal error message, even the administration.
I tried deleting the redirection but it looks like the installation doesn't takes the change.
Here is my .htaccess file contents:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^.*\.gif|\.jpg|\.png|\.css|\.php$ - [L]
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
I really need this blog working or my customer is going to kill me!!
Any help will be appreciated. Thank you ;)