开启伪静态后台也跟着伪静态了,能不能不让后台伪静态?
有的后台是两个以数,有的是三个参数,如何写伪静态?
开启伪静态后台就登不上去了。
-----------------------------------------
我刚发现,后台没有伪静态,只是后台入口伪静态了。
贴出我的伪静态不完全正确的代码:
<rule name="module">
<match url="^(\w+)/$" ignoreCase="true" />
<action type="Rewrite" url="index.php?/{R:1}/" />
</rule>
<rule name="question">
<match url="^question/(\d+)$" ignoreCase="true" />
<action type="Rewrite" url="index.php?/question/{R:1}" />
</rule>
<rule name="people">
<match url="^people/(\w+)$" ignoreCase="true" />
<action type="Rewrite" url="index.php?/people/{R:1}" />
</rule>
<rule name="account">
<match url="^account/([a-zA-Z0-9_\/]*)" ignoreCase="true" />
<action type="Rewrite" url="index.php?/account/{R:1}" />
</rule>
<rule name="setting">
<match url="^setting/(\w+)/" ignoreCase="true" />
<action type="Rewrite" url="index.php?/setting/{R:1}/" />
</rule>
但是我发现关于“最新动态”及私信等页面信息加载不了,只有个等待状态的小圆圈转啊转,怎么解决?
阅读全文
收起全文