2012-12-06 70 views
0

我有以下重寫規則:修改一些重寫規則

RewriteRule ^section/(.*)/(.*)_(.*).html$ index.php?section_permalink=$1&content_permalink=$2&content_id=$3 [QSA,L] 
RewriteRule ^section/(.*)/page_(.*)/$ index.php?section_permalink=$1&page=$2 [QSA,L] 
RewriteRule ^section/(.*)/$ index.php?section_permalink=$1 [QSA,L] 

我想對它們進行修改,以擺脫/節/的。

我該怎麼做?

謝謝!

+0

你是什麼意思的「擺脫/部分/」?你想讓它脫離規則嗎?你想從瀏覽器的URL地址欄中找到它嗎? –

+0

我想從規則中刪除它,當然還有從瀏覽器的URL地址欄中刪除它。 – Psyche

回答

1
RewriteCond %{REQUEST_FILENAME} -f [OR] 
RewriteCond %{REQUEST_FILENAME} -d 
RewriteRule^- [L] 

RewriteRule ^(.*)/(.*)_(.*).html$ index.php?section_permalink=$1&content_permalink=$2&content_id=$3 [QSA,L] 
RewriteRule ^(.*)/page_(.*)/$ index.php?section_permalink=$1&page=$2 [QSA,L] 
RewriteRule ^(.*)/$ index.php?section_permalink=$1 [QSA,L]