0

我尝试将以下逻辑添加到 .htaccess 文件中:

subdomain.domain.xx 重定向到 subdomain.domain.xx/subdomain/ xy.domain.xy 重定向到 xy.domain.xy/xy/ (它应该适用于每个子域而无需添加新的重写)

我找到了很多重定向 subdomain.domain.xx -> domain.xx/subdomain 的解决方案,但没有什么像我需要的那样......在下面你可以找到我尝试的代码。

希望可以有人帮帮我。谢谢。

RewriteBase 上的 RewriteEngine /

重写规则 ^([^.?]+[^.?/])$ $1/ [R]

RewriteCond %{HTTP_HOST} ^(www)?.domain.ch/$ RewriteRule .* http\://%1$1.domain.ch/%1$1 [I,R=301]

4

1 回答 1

1

将其.htaccess放在子域根目录的文件中:

DirectoryIndex index.html
RewriteEngine on
Redirect permanent /index.html http://subdomain.domain.xx/subdomain/
于 2012-07-05T12:38:32.007 回答