需要Htaccess重定向

时间:2015-09-01 15:55:35

标签: .htaccess url redirect

我的网站上出现了一些错误,我的网址需要301重定向,如下所示:

https://firstnamelastname.example.com/the-wall转到https://example.com/new-wall/firstnamelastname,其中firstnamelastname是任何名称。

1 个答案:

答案 0 :(得分:2)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^(?!www\.)([^.]+)\.(example\.com)$ [NC]
RewriteRule ^the-wall/?$ http://%2/new-wall/%1 [L,NC,R=301]
相关问题