前后端分离
怎么让访问域名跟目录是访问了 public 目录下的index.html文件 现在都是访问到php里面去了
https://www.workerman.net/doc/webman/static.html
我在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
不用nginx,不让中间商赚差价,直接用 webman 可以实现吗?(我的想法是小系统就直接放弃 nginx了)
利用Route::fallback()设置404回调,然后找到index.html 并返回内容
https://www.workerman.net/doc/webman/static.html
我在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,设置里加一句
现在是AI时代啦,通用问题问AI解决速度最快
https://www.workerman.net/ai
不用nginx,不让中间商赚差价,直接用 webman 可以实现吗?(我的想法是小系统就直接放弃 nginx了)
利用Route::fallback()设置404回调,然后找到index.html 并返回内容