doudou1309 2015-03-09 19:50
浏览 23
已采纳

PHP mvc路由问题与链接

I'm just beginning with PHP, and started with YouTube tutorial about mvc. All went well, but when I started to develop my own application I encountered a problem with routing (I think).

My base application has URL: localhost/mvc/public/.

With the tutorial I created a class which starts a default home controller and index action when those are not specified. So localhost/mvc/public/ is equivalent to localhost/mvc/public/home/index.

In my view I have:

<p>You need to <a href="profile/login">log in</a> or <a href="profile/register">register</a></p>

So when I start with url localhost/mvc/public/ and then click on a link, it goes to localhost/mvc/public/profile/login and everything works fine. But if I write url localhost/mvc/public/home/index and then click a link I go to localhost/mvc/public/home/profile/index which obviously doesn't work. So my question is - how to solve this problem?

If someone is interested, I can post my code.

  • 写回答

1条回答 默认 最新

  • doushuichong2589 2015-03-09 20:00
    关注

    profile/register is a relative path, so it is added to the path you already had. Because /home/index doesn't have a trailing /, the browser assumes home is the path and index is a file or resource name, so home is kept and profile/register is added to it.

    Solution: change the paths to /profile/register (with a leading /) in your links. The / at the beginning tells the browser to add the path after the bare domain name, instead of choosing a path relative to the current one.

    Probably better: add a 'basepath' setting to your application by which it knows what the base path is. In your code you can use this base path when generating paths, for instance:

    <a href="<?=$basepath?>profile/register">
    

    If you installed the application in the root, you can set basepath to /. In your case, you could set it to /mvc/public/.

    Instead of a variable, you can create a function for it too to wrap the setting. If you search for "CodeIgniter base path" you will find plenty of examples of how CodeIgniter (a popular MVC framework) handles this.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿