Can I used mod_rewrite to change file extensions? .jpeg to .jpg for example

╄→гoц情女王★ 提交于 2019-12-24 03:42:56

问题


I am looking to use Apache mod_rewrite to serve a file as .jpg instead of .jpeg. Is this possible?


回答1:


Try this:

RewriteEngine on
RewriteRule ^(.+)\.jpeg$ $1.jpg



回答2:


You can rewrite the jpeg extension to jpg using the following rule in htaccess :

RewriteEngine on

RewriteRule ^(.+)\.jpeg$ /$1.jpg [L]


来源:https://stackoverflow.com/questions/1479167/can-i-used-mod-rewrite-to-change-file-extensions-jpeg-to-jpg-for-example

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!