通常の動的 URL があり、以下のように SEO フレンドリーにしたい
私のURLは
domain.com/search.php?v1=mobiles&v2=nokia
に
domain.com/search/mobiles/nokia
助けてください
私はこれをします:
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