-1

Let say I have URL like http://www.example.com/pages/process-one.html, I want to add an entry in .htaccess that will let me visit the same page using the URL https://www.example.com/process/process-one.html - so people will use "process" instead of "pages".

J0e3gan
  • 8,740
  • 10
  • 53
  • 80
Eric Libay
  • 101
  • 8

1 Answers1

0

RewriteEngine On
RewriteRule /process/process-one.html /pages/process-one.html [L]

You may need RewriteBase / or some other based on your server config. This htaccess goes in /.

BMC
  • 166
  • 4