我的.htaccess如下面,我需要example.com/updatetagsyncronize.html/1/2URL重寫工作不正常
RewriteEngine On
RewriteBase/
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
example.com/updatetagsyncronize.html - 它的工作原理是這樣
,我需要
example.com/updatetagsyncronize.html/1/2 - 有兩個額外的參數
我發現如何簡化,並與這裏simplified htaccess
多個參數使用,但它不工作
RewriteRule ^([-\w]+)?/?([-\w]+)?/?([-\w]+)?/?$ index.php?q=$1&seg2=$2&seg3=$3
這是什麼的意思和([(*) - \ w] +)我怎麼能重寫這個,結合第一,因爲我使用cms modx,也許這就是爲什麼我面臨錯誤。 任何建議或鏈接。謝謝!!!
http://www.rexegg.com/regex-quickstart.html – inarilo