Site icon Hip-Hop Website Design and Development

Pagination redirect set in .htaccess file will not be working

I am making an attempt to redirect like under however it’s not working.

http://instance.com/web page/2 -> http://instance.com/merchandise/web page/2

Beneath is the supply of .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.hogehoge.com
RewriteRule (.*) http://hogehoge.com/$1 [R=301,L]

RewriteRule ^hogehoge.com/web page/(.*)$ http://hogehoge.com/merchandise/web page/$1 [R=301,L]

# 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