我把TP项目从Apache移植到IIS之后,可以去掉index.php访问了,但是好像所有的静态路径好像都出现了问题,图片、css那些全都没加载出来。我用ISAPI_REWRITE转了.htaccess的规则了
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
比如这个<link rel="stylesheet" type="text/css" href="/Public/Plugins/ui-frame/ui.css" />路径,直接跳到了http://localhost:8980/Public/Plugins/ui-frame/ui.css,项目名没了,求解