我在使用 Apache Mod_Rewrite 模块时遇到问题,
我正在从获取请求中检索三个变量说
$country
$state
$location
我成功地在本地重写了 url,例如 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]
我如何重写国家和州的情况,如果我只想显示国家页面..
多谢!!请通过提供在线教程和其他参考资料来帮助我。
我将非常有义务为您提供同样的.. :)