In wordpress, I want http://www.example.com/domain/12345/ redirect to
http://www.example.com/page.php?a=domain&b=12345
The default setting of .htaccess is as follow,
# 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 add another statement at end of IfModule but not work
RewriteRule ^http://%{HTTP_HOST}%/(.*)/(.*)/$ page.php?a=$1&b=$2 [L,NC]
Anything wrong? (the .htaccess is located in the root dir of wordpress)