Reputation: 3213
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
Reputation: 255005
RewriteEngine On
RewriteBase /
RewriteRule restaurants/(.*).html /restaurants/$1 [R=301,L]
Upvotes: 1