nginx中的mvc问题

发布于 2024-10-01 17:25:07 字数 387 浏览 3 评论 0原文

你好,我正在尝试制作某种mvc,至少对于学习建议来说,

例如,

/application/test.php
/views
/model
index.php

当我去

www.mvc.com/test.php

它时,它会直接进入 test.php

有没有办法做这样的事情? 也许使用 htacsess ?如果我在 nginx 中(我是 nginx 的新手),是否有某种 htacsess 以便我可以获取 url 然后重定向(就像 router.php 那样?)

谢谢寻找

亚当·拉马丹

hello im trying to make somekind of mvc, well at least for learning propose,

example,

/application/test.php
/views
/model
index.php

when i go to

www.mvc.com/test.php

it will go strait to test.php

is there a way to do things like this ?
maybe useing htacsess ? if im in a nginx ( im new to nginx ) is there some kind of htacsess so i can get the url then redirect ( like router.php does ? )

thank you for looking in

Adam Ramadhan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一枫情书 2024-10-08 17:25:07
server {
    root /var/www/html/application;
    location / {
        index index.php index.html index.htm;
        if (!-f $request_filename) {
            rewrite ^(.+)$ /test.php last;
            break;
        }
    }
}
server {
    root /var/www/html/application;
    location / {
        index index.php index.html index.htm;
        if (!-f $request_filename) {
            rewrite ^(.+)$ /test.php last;
            break;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文