2
我試圖創建.htaccess重定向,以便文件夾將重定向到其正確的頁面。動態.htaccess重定向
例如... http://example.com/contactus/help.html會重定向到http://example.com/contact-us/help.html或http://example.com/contactus到http://example.com/contact-us
我試圖創建.htaccess重定向,以便文件夾將重定向到其正確的頁面。動態.htaccess重定向
例如... http://example.com/contactus/help.html會重定向到http://example.com/contact-us/help.html或http://example.com/contactus到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>