nginx部署thinkphp怎么访问后台管理系统
1个回答
2016-11-27 · 知道合伙人互联网行家
关注
展开全部
apache:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /shop/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
nginx,rewrite重写index.php,但是另外一个RewriteBase /shop/不知道怎么实现。
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /shop/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
nginx,rewrite重写index.php,但是另外一个RewriteBase /shop/不知道怎么实现。
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询