我有一个网站,我的链接看起来像这样 http://www.domain.com/index.php?lang=English&inc=canyoning 我设法像这样编写 rewriteRule:
RewriteRule (German|English)\/(.*) http://www.domain.com/index.php?lang=$1&inc=$2 [NC,R]
现在我的链接看起来像这样:<a href="http://www.domain.com/English/canyoning">
...
这可行,但我可以在浏览器地址栏中看到非用户友好的 URL。如何告诉浏览器使用/English/canyoning
URL 中的链接而不是index.php?lang=English&inc=canyoning
?
第二:我想在页面上使用表格。没有区别,无论我使用表单方法 =GET 还是 POST,都没有变量到达目标站点。
我想我的 rewriteRule 错误。如何解决这些问题?
谢谢你的帮助!