admin 评论(0) 2021-01-02 使用说明

Nginx伪静态

 location / {
   if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=/$1  last;
   break;
    }
 }

Apache伪静态


  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>

IIS伪静态

"1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="OrgPage" stopProcessing="true">
                    <match url="^(.*)$" >match>
                    <conditions logicalGrouping="MatchAll">
                        <add input="{HTTP_HOST}" pattern="^(.*)$" >add>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" >add>
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" >add>
                    conditions>
                    <action type="Rewrite" url="index.php/{R:1}" >action>
                rule>
            rules>
        rewrite>
    system.webServer>
configuration>


评论
    你来打破0评论
同类排行
猜你喜欢