Hi, everything is working fine expect urls that ends with .html doesn't redirect, i read that it's an htacess problem here is mine :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress-test/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress-test/index.php [L]
</IfModule>
# END WordPress
Can somebody help me to change this to get it working ? :( thanks