first .htaccess in root
SetEnv APPLICATION_ENV development
<Files *.ini>
require valid-user
</Files>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^lib(.*)$ ./lib/$1 [L]
RewriteRule ^(.*)\.(.*)$ ./public/$1.$2 [L]
RewriteRule ^(.*)$ ./public/$1/ [L]
</IfModule>
second .htaccess in /public/
RewriteEngine On
RewriteBase /public
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ ./?page=$1&%{QUERY_STRING} [L]
我使用iis7中的规则导入,但它不起作用。 当我调试这个,我觉得第二个web.config不读。 在我的浏览器中,我的网址被重定向到http://www.url.be/fr/,我有错误消息404。 为了工作,网址是http://www.url.be/?page=fr
我迷路了! 谢谢 盖