my wordpress .htaccess file look like
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
i want add my owm rewriterule but is not working
rule have to rewrite page/([a-z,A-Z]+).html$ to pages?page_name=$1
also i recomend you to read this post
it shows how to add your custom rewriterule to WP