标签: php .htaccess url
这是我的旧式url
http://djit.ac/djitblog/?controller=blog&action=view&id=4
如何让它看起来像这样?
http://djit.ac/djitblog/blog/view/4
到目前为止,我已经尝试了这个,但它无法正常工作
RewriteEngine On # Turn on the rewriting engine RewriteRule ^blog/view/([0-9]+)/?$ ?controller=blog&action=view&id=$1 [NC,L] # Handle product requests