this is in my htaccess
# 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
But if i add
RewriteRule ^page/([^/]*)$ page.php?$id=$1 [L]
RewriteRule ^page/2/([^/]*)$ page2.php?$id=$1 [L]
to the top, no use. Please help me..