开发者

Dynamic .htaccess redirect

开发者 https://www.devze.com 2023-04-06 12:55 出处:网络
I\'m trying to create an .htaccess redirect so that an folder will redirect to its proper page. For example... http://exampl开发者_如何转开发e.com/contactus/help.html will redirect to http://example.

I'm trying to create an .htaccess redirect so that an folder will redirect to its proper page.

For example... http://exampl开发者_如何转开发e.com/contactus/help.html will redirect to http://example.com/contact-us/help.html or http://example.com/contactus to http://example.com/contact-us


<IfModule mod_rewrite.c>
  RewriteCond %{HTTP_HOST} ^example\.com/contactus/(.+)$ [NC]
  RewriteRule ^ http://example\.com/contact-us/%1 [R=301,L]
</IfModule>
0

精彩评论

暂无评论...
验证码 换一张
取 消