如何使用.htaccess添加文件类型扩展名? [英] How to add file type extension using .htaccess?

查看:85
本文介绍了如何使用.htaccess添加文件类型扩展名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将 http://example.com/STRING 之类的链接映射到 http://example.com/STRING.png ,如何使用.htaccess?

I want to map links like http://example.com/STRING to http://example.com/STRING.png, how to do it with .htaccess?

推荐答案

尝试在htaccess中使用以下代码:

Try the following code in htaccess :

RewriteEngine on


RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.png -f

RewriteRule ^([^/]+)/?$ /$1.png [NC,L]

这篇关于如何使用.htaccess添加文件类型扩展名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆