我的网站上出现了一些错误,我的网址需要301重定向,如下所示:
https://firstnamelastname.example.com/the-wall转到https://example.com/new-wall/firstnamelastname,其中firstnamelastname是任何名称。
答案 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]