伪静态中文传参,高手帮忙啊!!!!!!!!!
一直没实现
window.location.href="/test/中文内容";
.htaccess
RewriteRule ^test/(\w+)$ test/test.php?t=$1
提示:跳到404去了,换为abc可以
想要的是
localhost/test/中文内容
页面得到并显示这个参数值
高手帮测一下吧,一直不行
------解决方案--------------------把中文内容先encode一下
获取到了之后再decode
------解决方案--------------------中文转换成unicode了,你转换一下试试
------解决方案--------------------RewriteRule ^test/(.+)$ test/test.php?t=$1
试试
------解决方案--------------------js中直接用eval就可以转换啊
------解决方案--------------------RewriteRule ^test/(\w+)$ test/test.php?t=$1
\w能检测中文字符吗?
var p = /\w/;
p.test('k') == true;
p.test('凯') == false;