IIS 7 的伪静态
我想让URI
http://localhost:18/User/GetAll/
重定向为
http://localhost:18/UserService.svc/GetAll/
重定向规则怎么做啊?
^/User(.*) /UserServices.svc$1
这个不行
------解决方案--------------------这样试试
RewriteRule /User/.+$ /UserService.svc/$1/ [L]
------解决方案--------------------http://localhost:18/UserService.svc/GetAll/
re:
这个地址可以访问吗