问题
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