基本使用
极致CMS必须使用伪静态,所以配置伪静态是必须的。而伪静态配置系统已经自带了
Apache
和IIS
两种配置,无需再配置。
Apache 配置
默认系统根目录自带
.htaccess
文件,如果没有,新建一个,将下面内容放进去。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
#RewriteCond %{REQUEST_URI} !((.*).jpg|.jpeg|.bmp|.gif|.png|.js|.css|.tts|.woff )$
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
#RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]
</IfModule>
IIS 配置
默认系统根目录自带,如果没有,新建
web.config
, 将下面内容保存到文件里。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="allow_rules" enabled="true" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Nginx 配置
注意空格,不要省略了!!!
location /{
if ( !-e $request_filename ) {
rewrite ^(.*)$ /index.php?s=$1 last;
}
}
温馨提示:各种服务器请手动选择
thinkphp
的伪静态配置即可,切勿手动填写,可能会出错。
另外,有可能前台能访问,后台访问依旧不行,那么很大可能是你的nginx服务器没有配置好伪静态。(如果是宝塔,请尝试重启面板)