我是靠谱客的博主 爱撒娇羊,最近开发中收集的这篇文章主要介绍基于 aLi Lua Web Server 的一个简单例子,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

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()

以上所述的全部内容了,希望大家能够喜欢。

最后

以上就是爱撒娇羊为你收集整理的基于 aLi Lua Web Server 的一个简单例子的全部内容,希望文章能够帮你解决基于 aLi Lua Web Server 的一个简单例子所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(150)

评论列表共有 0 条评论

立即
投稿
返回
顶部