我有一个文件def setTimeStamp(line,newline):
line = line.replace("[" , "")
line = line.replace("]", "")
datetime = line.split('@')
print datetime[0] #this works fine
#output sample: 2013/12/14
print datetime[1] #this is getting an error
def main():
newline = ''
cg = open('log.lg','r')
for line in cg:
line = line.strip()
parsed_line = line.split(" ")
print parsed_line[0]
# output sample: [2013/12/14@08:45:13.296+0800]
setTimestamp(parsed_line[0], newline)]'
,用image.php
生成jpeg图像。当有人想要获得调整大小的图像或裁剪时,他会打开imagejpeg
现在我希望可以从http://example.com/image.php?src=http://example.org/image
我想用htaccess进行此操作,但我不想成为重定向,我希望image.jpg作为image.php运行
我该怎么做?
我试过了:
http://example.com/image.jpg?src=http://example.org/image
但没有结果。
我想这样做,因为当你想在Facebook帖子中添加图片时,如果是AddType application/x-httpd-php5 image.jpg
谢谢!
答案 0 :(得分:1)
希望它有所帮助。
RewriteRule ^image\.jpg$ image.php [L]