1

通常の動的 URL があり、以下のように SEO フレンドリーにしたい

私のURLは

domain.com/search.php?v1=mobiles&v2=nokia

domain.com/search/mobiles/nokia

助けてください

4

2 に答える 2

0

私はこれをします:

RewriteEngine On  #if not already on. 
RewriteCond %{REQUEST_FILENAME} !-f #only if it is not calling a file that actually exists
RewriteCond %{REQUEST_FILENAME} !-d #only if it is not calling a directory that actually exists.
RewriteRule ([a-z0-9]+)(/*)([a-z0-9]*)(/*)([a-z0-9]*)(/*) search.php?v1=$1&v2=$3 [L,NC,QSA]

これは、/mobile/ にアクセスするだけの場合でも機能します (search.php がそれを処理できると仮定します)。

HTH

于 2013-07-26T07:44:26.157 に答える