【问题标题】:stuck with pretty url in mvc php using localhost apache使用 localhost apache 在 mvc php 中使用漂亮的 url
【发布时间】:2017-11-28 14:59:52
【问题描述】:

我的根或索引项目是http://localhost/myapp

如何转换

http://localhost/myapp/index.php?controller=song&id=32&action=edit

http://localhost/myapp/song/32/edit

我的项目在文件夹c:\php\www\myapp

【问题讨论】:

  • 你研究过mod_rewrite吗?

标签: php .htaccess localhost friendly-url


【解决方案1】:

在 .htaccess 文件中使用此代码:

RewriteRule ^myapp/index.php?controller=song&id=([0-9]+)&action=edit/$ myapp/song/$1/edit [L]

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-02-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-02-13
    相关资源
    最近更新 更多