.htaccess重定向是指文件夹

时间:2016-01-11 12:02:04

标签: .htaccess mod-rewrite redirect

我有这些htaccess规则:

RewriteCond %{HTTP_HOST} ^(www\.)?mydomain\.de\/subpage$ [NC]
RewriteRule ^(.*)$ http://www.domain.de/subpage.html/$1 [R=301,L]

RewriteCond %{HTTP_HOST} ^(www\.)?subdomain\.domain\.de$ [NC]
RewriteRule ^(.*)$ http://www.domain.de/subpage.htm/$1 [R=301,L]

我不明白。通常htaccess-redirects没有问题,但这会让我发疯。

当我打开mydomain.de/subpage时,它会尝试打开文件夹(或者为现有资源抛出404)。相反,我希望我的htaccess规则触发。我错过了什么?

1 个答案:

答案 0 :(得分:1)

好的,明白了。 Starkeen 给了我一个指示。不得不使用条件类型的变量:这是我的工作结果:

"Tom & John"