我想重定向test.subdomain.com到subdomain.com/web
我也想重定向所有页面和帖子。
我从 cpanel 做了重定向,它只会重定向主页,然后我在 .htaccess 中放了一些代码
这段代码对我不起作用。
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^test\.subdomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.test\.subdomain\.com$
RewriteCond %{HTTP_HOST} ^www\.test\.subdomain\.com\blog
RewriteRule ^/?$ "https\:\/\/subdomain\.com\/web" [R=301,L]
RewriteRule ^(.*) http://www.subdomain.com/web/%{REQUEST_URI} [R=302,NC]
RewriteRule ^(.*) http://www.subdomain.com/web/blog/%{REQUEST_URI} [R=302,NC]
</IfModule>