光头程序员 发表于 2013-8-15 13:39:32

URL传递中文的问题--IIS 7.5

domain.com/movie/show/中文

IIS 7.5   CI 2.1.4   提示错误 The URI you submitted has disallowed characters.

很多帖子都说新建 MT_URI.php,修改 config.php,但是都没有效果,,,,求最终解决方法!!!


但是我在Apache下什么都没配置就可以的。


.htaccess
-------------------
RewriteEngine on
RewriteCond $1 !^(index\.php|static|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1

---------
web.config
------------------------
<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <system.webServer>

<rewrite>
<rules>
    <rule name="name1" stopProcessing="true">
      <match url="^(.*)$" ignoreCase="false" />
      <conditions>
      <add input="{R:1}" pattern="^(index\.php|static|robots\.txt)" ignoreCase="false" negate="true" />
      </conditions>
      <action type="Rewrite" url="/index.php/{R:1}" />
    </rule>
</rules>
</rewrite>
    </system.webServer>

</configuration>


光头程序员 发表于 2013-8-15 18:07:13

认真尝试

http://codeigniter.org.cn/forums/forum.php?mod=viewthread&tid=15603

这个有效,感谢

zxw5052 发表于 2013-8-15 20:32:02

关注中

灵魂工程师_² 发表于 2013-11-9 11:37:10

我的内容页 老跳首页 咋办啊   http://it360.org.cn/view/2215帮看看啊 谢谢啦
页: [1]
查看完整版本: URL传递中文的问题--IIS 7.5