Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在这样的文件夹中使用 htaccess:
C:\wamp\www2\
它在 C:\wamp\www\ (wamp 服务器的默认文件夹)中工作,但与上述文件夹无关。 如何让 htaccess 在 www2 文件夹下工作? 我使用 www2 通过 https OS:win server 2008请求 SSL 请求 。
这可能是因为您没有正确的<Directory>指令。您的默认 WAMP 配置中可能有类似的东西:
<Directory>
<Directory C:\wamp\www\> AllowOverride All Order allow,deny allow from all </Directory>
重要的部分是AllowOverride。当设置为All或特定值时,Apache 将查找 .htaccess 文件并在运行时根据内容进行自我配置。
AllowOverride
All
您可能只需要为您的目录添加一个类似的<Directory>部分。c:\wamp\www2\
c:\wamp\www2\