0

如果您想使用 .htaccess 将两个单独的域重定向到同一个子文件夹,您可以通过更改域和文件夹来使用下面的代码以匹配您的情况。

<IfModule mod_rewrite.c>

RewriteEngine On
Options +FollowSymlinks
RewriteBase /

# Redirect PuistoSahlynSM.fi

RewriteCond %{HTTP_HOST} ^(www\.)?puistosahlynsm\.fi
RewriteCond %{REQUEST_URI} !puisto/
RewriteRule ^(.*)$ puisto/$1 [L]

# Redirect PuistoSählynSM.fi

RewriteCond %{HTTP_HOST} ^(www\.)?xn--puistoshlynsm-hfb\.fi
RewriteCond %{REQUEST_URI} !puisto/
RewriteRule ^(.*)$ puisto/$1 [L]


</IfModule>
4

1 回答 1

1

您需要找到您的国际化域名的 Punycode 名称。

维基百科关于国际化域名的文章

来自 WP 文章的 IDNA 转换器

于 2012-05-31T12:49:41.907 回答