默认跟目录问题可以是public下面吗

chenliangwei

问题描述

前后端分离

怎么让访问域名跟目录是访问了 public 目录下的index.html文件
现在都是访问到php里面去了

149 2 0
2个回答

liziyu
  • chenliangwei 7天前

    我在public目录下 放了 index.html 和 system文件夹 ,system文件夹里面有一个 index.html文件
    我想要的是 访问http://www.abc.com/ 这样直接打开 public 目录下的index.html 文件
    但是现在我的情况是下面这样的:
    访问http://www.abc.com/system/ 这样直接打开 public 目录下的system/index.html 文件
    而我现在 访问 http://www.abc.com/ 打开的是页面是 404 Not Found
    访问 http://www.abc.com/system/ 打开的是页面是 404 Not Found

https://www.workerman.net/doc/webman/others/nginx-proxy.html
nginx配置参考文档,如果想自动访问index.html,设置里加一句

index index.html;

现在是AI时代啦,通用问题问AI解决速度最快
https://www.workerman.net/ai

截图

  • chenliangwei 6天前

    不用nginx,不让中间商赚差价,直接用 webman 可以实现吗?(我的想法是小系统就直接放弃 nginx了)

  • walkor 6天前

    利用Route::fallback()设置404回调,然后找到index.html 并返回内容

×
🔝