-2

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

user3783243
  • 4,418
  • 5
  • 14
  • 34
user8274471
  • 5
  • 1
  • 4

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
  • 902
  • 2
  • 6
  • 18