使用 localhost apache 在 mvc php 中使用 pretty url
stuck with pretty url in mvc php using localhost apache
我的根或索引项目是 http://localhost/myapp
如何转换
http://localhost/myapp/index.php?controller=song&id=32&action=edit
到
http://localhost/myapp/song/32/edit
我的项目在文件夹 c:\php\www\myapp
在 .htaccess 文件中使用此代码:
RewriteRule ^myapp/index.php?controller=song&id=([0-9]+)&action=edit/$ myapp/song//edit [L]
我的根或索引项目是 http://localhost/myapp
如何转换
http://localhost/myapp/index.php?controller=song&id=32&action=edit
到
http://localhost/myapp/song/32/edit
我的项目在文件夹 c:\php\www\myapp
在 .htaccess 文件中使用此代码:
RewriteRule ^myapp/index.php?controller=song&id=([0-9]+)&action=edit/$ myapp/song//edit [L]