|
|
正常的链接应该是这样
http://baidu.com/search?q=%B2%CF%CB%BF%B1%BB&cat=0&pid=000000&mode=23
dedecms后台添加文章后,html代码里变成了这样,"&"会变成"&"
http://baidu.com/search?q=%B2%CF%CB%BF%B1%BB&cat=0&pid=000000&mode=23
因为要做跳转,那个网址被改变了,怎么办,网址要原原本本一样- <html>
- <head>
- <meta name="robots" content="none">
- <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
- <meta http-equiv="refresh" content="0;url=http://baidu.com/search?q=%B2%CF%CB%BF%B1%BB&cat=0&pid=000000&mode=23">
- </head>
- <body>
- </body>
- </html>
复制代码 |
|