nginx部署thinkphp

浏览:2224 发布日期:2015/07/01 分类:求助交流 关键字: nginx apache rewrite
域名后面多了一个别名
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;
}
最佳答案
评论( 相关
后面还有条评论,点击查看>>