YzmCMS伪静态配置
摘要:YzmCMS伪静态配置(YzmCMS5.0版本的伪静态规则与之前版本不同,所以本教程只适⽤于5.0及以上版本):Apache 伪静态(即YzmCMS⾃带的.htaccess⽂件):&< p="">
YzmCMS伪静态配置(YzmCMS5.0版本的伪静态规则与之前版本不同,所以本教程只适⽤于5.0及以上版本):
Apache伪静态(即YzmCMS⾃带的.htaccess⽂件):
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>
Nginx伪静态:
location / {
#//...省略部分代码
if (!-e $request_filename){
rewrite  ^(.*)$  /index.php?s=$1  last;  break;
}
}
如果你的应⽤安装在⼆级⽬录,Nginx的伪静态⽅法设置如下,其中youdomain是所在的⽬录名称。
location /youdomain/ {
if (!-e $request_filename){
rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=$1  last;nginx 配置文件
}
}
举个栗⼦:
如果你⽤的是本机电脑上的phpstudy环境的话,打开配置⽂件( nginx/f ):
location / {
index  index.html index.htm index.php;
#autoindex  on;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
90%的情况下,Nginx的以上配置是完全没问题的,如果你⽤的是⽼古董的话,那么你可以尝试修改YzmCMS配置⽂件:“common/config/config.php”,修改配置项 “set_pathinfo” 为 true 来实现!
IIS伪静态:
如果你的服务器环境⽀持ISAPI_Rewrite的话,可以配置httpd.ini⽂件,添加下⾯的内容:
RewriteRule (.*)$ /index\.php\?s=$1 [I]
在IIS的⾼版本下⾯可以配置fig,在中间添加rewrite节点:
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?s={R:1}" />
</rule>
</rules>
</rewrite>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。