0
- http://www.a.com/content/1
http://www.a.com/content/seo-text-1阿帕奇重寫問題
重寫規則^含量/(\ d +)?|?+ - (\ d +)動作/ index.php文件ID = $ 16
此規則不起作用second url
,如何解決?
謝謝
http://www.a.com/content/seo-text-1阿帕奇重寫問題
重寫規則^含量/(\ d +)?|?+ - (\ d +)動作/ index.php文件ID = $ 16
此規則不起作用second url
,如何解決?
謝謝
如果出於任何原因,你需要把它在單一的規則,你可以使用這個:
RewriteRule ^content/(.*)-?(\d+)$ action/index.php?id=$2 [R]
但更可讀的解決方案是使用兩個規則:
RewriteRule ^content/(\d+)$ action/index.php?id=$1 [R]
RewriteRule ^content/.*-(\d+)$ action/index.php?id=$1 [R]