我想转发:
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
需要帮助来解决它。
谢谢