【发布时间】:2014-10-08 15:06:42
【问题描述】:
我现在有这个网址:
new.php?news&post=111&title=XXXX
我想要这个网址:
new/news/111/XXXX
Htaccess 怎么做?
我试图用 mod_rewrite 转换它,但我做不到!
【问题讨论】:
标签: php .htaccess url web url-rewriting
我现在有这个网址:
new.php?news&post=111&title=XXXX
我想要这个网址:
new/news/111/XXXX
Htaccess 怎么做?
我试图用 mod_rewrite 转换它,但我做不到!
【问题讨论】:
标签: php .htaccess url web url-rewriting
试试这个
RewriteRule ^/new/news/([^/]+)/([^/]+) /new.php?news&post=$1&title=$2
【讨论】:
http://localhost/new/news/218/XXX/ 它会打开,但如果我打开http://localhost/fa/news/218/XXX(最后没有/,它不会打开!)如何解决这个问题?
http://localhost/new/news/218/XXX/ 可以工作,但http://localhost/new/news/218/XXX 不工作??