I have this url now :
new.php?news&post=111&title=XXXX
i want to have this url :
new/news/111/XXXX
How to do it with Htaccess ?
I tried to convert this with mod_rewrite but i could not !
I have this url now :
new.php?news&post=111&title=XXXX
i want to have this url :
new/news/111/XXXX
How to do it with Htaccess ?
I tried to convert this with mod_rewrite but i could not !
收起
Try this
RewriteRule ^/new/news/([^/]+)/([^/]+) /new.php?news&post=$1&title=$2
报告相同问题?