|
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 [L]
---------
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>
|
|