如何使用htaccess重定向example.com

时间:2012-10-09 07:38:38

标签: .htaccess redirect http-redirect

如何使用.htaccess文件将example.com重定向到example.com/market

离。

http://example.com/details.php?id=3667 and
http://www.example.com/details.php?id=3667

应该重定向到

http://example.com/market/details.php?id=3667

我也希望将所有example.com重定向到example.com/market

使用htaccess

1 个答案:

答案 0 :(得分:1)

根据here

将www重定向到非www

RewriteEngine On
RewriteCond %{HTTP_HOST} !^example\.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]

将根目录重定向到子文件夹

Redirect / http://example.com/market