我有什麼:的.htaccess - 重寫規則
我重寫規則:
RewriteRule ^(?!user?)([a-z0-9.-]+)+(\/)?$ index.php?page=$1
我想
所以,如果我去http://localhost/hello/
,我想hello
什麼$1
但是如果我去http://localhost/user/
我想要做什麼在這個重寫規則:)因爲其它的規則被處理的特殊頁面:)
什麼問題:
非但沒有hello
爲$1
,我得到index.php
,爲什麼,我應該如何解決這個問題?
我還測試了正則表達式與preg_replace
這裏:http://regex.larsolavtorvik.com/和作品:\
它需要一些工作,但它幫助過我!非常感謝! – Adam 2010-12-23 02:41:16