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.
我一直在托管一些不再在服务器上的文件,并且 apache 错误日志一直在用“文件不存在”行困扰我。
我想使用 .htaccess手动指定哪些文件(如果在 URI 中请求)应重定向到根位置(或其他任何位置)。
谁能帮我怎么做?
例子:
www.domain.com/non-existent-file.jpg应该去www.domain.com/
www.domain.com/non-existent-file.jpg
www.domain.com/
解决了它:
RewriteRule non-existent-file.jpg http://www.domain.com/ [R=301]
希望这是最好的解决方案!