0

我想转发:

http://example.com/industry/fn/bpo-jobs

http://example.com/industry.php?fn=bpoobs

同样:

http://example.com/industry/cat/obs

http://example.com/industry.php?cat=obs

使用以下规则:

<IfModule mod_rewrite.c> 

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^([^/]+)/$ $1.php 

RewriteCond %{QUERY_STRING} (^|&)fn=(.*)(&|$) 
RewriteRule ^industry/fn/(\w+)$ industry.php?fn=$1 [L]

RewriteCond %{QUERY_STRING} (^|&)cat=(.*)(&|$)
RewriteRule ^industry/cat/(\w+)$ industry.php?cat=$1 [L]

</IfModule>

但它不能正常工作,我认为它正在治疗

 http://example.com/industry/fn/bpo-jobs

作为

http://example.com/industry.php

需要帮助来解决它。

谢谢

4

1 回答 1

0

您不需要 RewriteCond 语句。

试试这个(没有 RewriteCond):

RewriteRule ^industry/fn/(\w+)$ industry.php?fn=$1 [L]
RewriteRule ^industry/cat/(\w+)$ industry.php?cat=$1 [L]

或者,更简单地说,这个:

RewriteRule ^industry/(cat|fn)/(\w+)$ industry.php?$1=$2 [L]
于 2013-08-09T08:36:56.217 回答