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 以从http://mysite.com/www.anyword.txt重定向到http://mysite.com/anyword.txt。我怎么能做到?anyword 是一个变量,我很少有带有这种掩码的文件。
编辑:(根据@anubhava下面的评论)
RewriteEngine On RewriteRule ^www\.([^.]+\.txt)/?$ /$1 [R,L,NC]
如果可行,请将R标志更改为R=301- 您永远不应该使用后者来测试您的服务器是否处于活动状态。
R
R=301