主頁 > 知識庫 > 基于 aLi Lua Web Server 的一個簡單例子

基于 aLi Lua Web Server 的一個簡單例子

熱門標簽:武漢外呼防封系統(tǒng)多少錢 漳州智云呼電話機器人 個人怎么在地圖標注需要的店鋪 百度地圖標注早餐區(qū)域 地圖標注大廈 冀州市地圖標注 清朝地圖標注哈爾濱 怎么去除地圖標注 新岸線智能電銷機器人

復(fù)制代碼 代碼如下:

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

以上所述的全部內(nèi)容了,希望大家能夠喜歡。

您可能感興趣的文章:
  • Nginx+Lua+Redis構(gòu)建高并發(fā)Web應(yīng)用
  • Lua讀取和寫入文件處理例子
  • C語言中通過LUA API訪問LUA腳本變量的簡單例子

標簽:儋州 天門 金昌 宣城 濰坊 臺灣 德宏 天門

巨人網(wǎng)絡(luò)通訊聲明:本文標題《基于 aLi Lua Web Server 的一個簡單例子》,本文關(guān)鍵詞  基于,aLi,Lua,Web,Server,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《基于 aLi Lua Web Server 的一個簡單例子》相關(guān)的同類信息!
  • 本頁收集關(guān)于基于 aLi Lua Web Server 的一個簡單例子的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章