1

我有这个重写规则,将我重定向到一个子文件夹并加载 index.html

Options -Indexes
RewriteEngine On
RewriteBase /

SetEnvIf HOST        ^sub.mydomain.de          allow
Order allow,deny
Allow from env=allow
Satisfy any

RewriteCond %{HTTP_HOST} ^(www.)?sub.mydomain.de$
RewriteRule ^(/)?$ folder [L,R=301]

到目前为止:这有效 - 但它在 url 中显示 /folder/ - 是否可以在 url 中“隐藏” /folder/?

有人对我有提示吗?

谢谢马雷克

4

1 回答 1

0

从规则中删除该R=301位,使其看起来像这样:

RewriteRule ^(/)?$ folder [L]
于 2012-12-14T12:54:03.973 回答