Apache Mod_Rewrite モジュールの使用に問題があります。
get リクエストから 3 つの変数を取得しています
$country
$state
$location
URLをローカルに書き換えることに成功しました
localhost/directory/country/state/location /*is redirected to*/
localhost/directory/result.php?c=country&s=state&l=location
私がやりたいことは、リダイレクトしたいということです
localhost/directory/country to localhost/directory/country.php?c=country
そしての場合
localhost/directory/country/state to localhost/directory/state.php?c=country&s=state
次の RewriteRule を使用しています
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)/([^/]*)$ result.php?s=$1&d=$2&l=$3 [L]
国と州の場合、および国のページのみを表示したい場合は、どのように書き直すことができますか..
どうもありがとう!!オンラインチュートリアルやその他の参考文献への参照を提供して、私を助けてください..
私はあなたに同じことをする義務があります.. :)