jrutter
jrutter

Reputation: 3213

How to setup 301 permanent redirect for following?

Im trying to figure out how to setup a 301 permanent redirect for the following paths.

From: /restaurants/casa-villa.html

To: /restaurants/casa-villa

Thanks! Jake

Upvotes: 2

Views: 96

Answers (1)

zerkms
zerkms

Reputation: 255005

RewriteEngine On
RewriteBase /
RewriteRule restaurants/(.*).html /restaurants/$1 [R=301,L]

Upvotes: 1

Related Questions