2

我正在尝试将每个可能的 url 从别名域重定向到主域。我正在使用 htaccess 使我的网址更漂亮。这是我到目前为止的示例和代码:

期望输出:

Alias page: www.stavimedumsvepomoci.cz/forum.html
gets redirected to the main domain: www.stavbadomusvepomoci.cz/forum.html

现在我需要它来处理 .cz/ 之后的每个可能的 url

到目前为止,我有这个:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?stavimedumsvepomoci\.cz [NC]
RewriteRule ^(.*)$ http://stavbadomusvepomoci.cz/$1 [R,L]

这基本上将任何页面从别名重定向到主域首页。如何从 alias/every/possible/url 重定向到 maindomain/every/possible/url。

感谢您的回答!

4

1 回答 1

2

正如评论中所说,您已经这样做了:$1 允许这样做,别名/每个/可能/url 到 maindomain/every/possible/url。你测试过吗?

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?stavimedumsvepomoci\.cz [NC]
RewriteRule ^(.*)$ http://stavbadomusvepomoci.cz/$1 [R,L]

希望你成功。

[添加]

你可能做过:

/etc/init.d/apache2 restart
于 2013-11-09T13:55:38.423 回答