基于 aLi Lua Web Server 的一个简单例子
时间:2021-01-24 11:07:41|栏目:|点击: 次
复制代码 代码如下:
file = 'index.lua'
if headers.uri ~= '/' then file = headers.uri end
local fexists = file_exists(file)
if not fexists then
-- try stat file.lua
fexists = file_exists(file .. '.lua')
if fexists then
file = file .. '.lua'
end
end
if fexists then
if file:find('.css') or file:find('.js') or file:find('font') or file:find('.ico') or file:find('images') then
header('HTTP/1.1 200 OK')
header('Cache-Control: max-age=864000')
sendfile(file)
else
header({'Expires:Thu, 19 Nov 1981 08:52:00 GMT',
'Pragma:no-cache'})
dofile(file)
end
else
header('HTTP/1.1 404 Not Found')
die('File Not Found!')
end
die()
以上所述的全部内容了,希望大家能够喜欢。
上一篇:建立Apache+PHP+MySQL数据库驱动的动态网站
栏 目:
下一篇:Powershell小技巧之通过EventLog查看近期电脑开机和关机时间
本文标题:基于 aLi Lua Web Server 的一个简单例子
本文地址:http://www.codeinn.net/misctech/50273.html






