-2

I want to Redirect http://www.example.com/?page=1 to http://www.example.com/page/1 using Htaccess.

user3783243
  • 5,098
  • 5
  • 16
  • 37
user8274471
  • 25
  • 1
  • 7

1 Answers1

0

copy & paste this code in .htaccess file in your root directory

To keep the prefix and replace the last part with a query string

RewriteCond %{QUERY_STRING} !^id=
RewriteRule ^root/pages/(.+)$ /root/pages/?id=$1 [L]

The RewriteCond is needed to prevent a rewrite loop.

Mohit Kumar
  • 932
  • 2
  • 7
  • 18