Hello!
I was able to install Wordpress on my server without any problems. I installed one additional plugin (<http://wordpress.org/extend/plugins/simple-captcha/>), and one additional theme (<http://wordpress.pro/wordpress-themes/wedding-10/>).
After the installation, I read the article
<http://www.techairlines.com/wordpress-security-tips-and-guidelines/>, following most of the tips. But now, I have a problem I cannot understand.
Links such as
<http://our-domain-name/about> and <http://our-domain-name/links> do not work. However, links such as
<http://our-domain-name/?page_id=2> (pointing to the About page) do work. I modified the `header.php' in the proper theme directory, and that solved the problem. But I still don't understand what's causing this behavior. Why does the link <<http://our-domain-name/about> take me to the front page?
(By the way, we are using the latest version of WordPress; i.e. 2.8.5.)
This is what the `.htaccess' file contains.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php/$1
# Protect wp-config.php
<Files wp-config.php>
order allow,deny
deny from all
</Files>
# BEGIN WordPress
# END WordPress