这就是我想要的:
URL: http://www.domain.com/location/netherlands/amsterdam/amsterdam-airport
现在,我想要的是如果有人在没有 www 的情况下打开这个 url,他应该被重定向到 www。
记住这些是 seo 友好的 url。我已经为上述网址使用了 MOD_REWRITE:
RewriteRule ^location/([^/]+)/?([^/]*)/?([^/]*)/?$ /location.php?country=$1&city=$2&location=$3 [L,QSA,NC]
现在,如果我使用任何 htaccess 技巧进行 www 重定向。这就是我得到的:
http://www.domain.com/location.php?country=netherlands&city=amsterdam&location=amsterdam-airport
如果您有任何问题,请告诉我。谢谢!