Nginx配置规则
location / { if (!-e $request_filename){ rewrite ^/index.php(.*)$ /index.php?p=$1 last; rewrite ^(.*)$ /index.php?s=$1 last; } }
apache配置规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?p=$1 [QSA,PT,L]
</IfModule>
IIS配置规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?p=$1 [QSA,PT,L]
</IfModule>
- 上一篇:PbootCMS运行安装环境配置要求
- 下一篇:制作一个网站的步骤
请立即点击咨询我们或拨打咨询热线: 13485062562,我们会详细为你一一解答你心中的疑难。项目经理在线