yii linux小知识

4 篇文章 0 订阅

1.隐藏index.php

修改 advanced/backend/config/main.php 文件如下:

return [
    'homeUrl' => '/admin',
    'components' => [
        'request' => [
            'baseUrl' => '/admin',
        ],
        'urlManager' => [
            'enablePrettyUrl' => true,
            'showScriptName' => false,
        ],
    ],
];

同样修改 advanced/frontend/config/main.php 文件:

return [
    'homeUrl' => '/',
    'components' => [
        'request' => [
            'baseUrl' => '',
        ],
        'urlManager' => [
            'enablePrettyUrl' => true,
            'showScriptName' => false,
        ],
    ],
];

接着设置服务器, 这里先以 apache 为例.

首先设置一下虚拟主机:

<VirtualHost *:80>
    ServerName advanced.loc
    ServerAlias www.advanced.loc

    DocumentRoot "/path/to/advanced"
    <Directory "/path/to/advanced">
        AllowOverride All
    </Directory>
</VirtualHost>

然后在站点根目录下创建 .htaccess 文件为:

# prevent directory listings
Options -Indexes
# follow symbolic links
Options FollowSymlinks
RewriteEngine on

RewriteCond %{REQUEST_URI} ^/admin/$
RewriteRule ^(admin)/$ /$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^/admin
RewriteRule ^admin(/.+)?$ /backend/web/$1 [L,PT]

RewriteCond %{REQUEST_URI} ^.*$
RewriteRule ^(.*)$ /frontend/web/$1

然后在 advanced/backend/web 目录中创建 .htaccess 文件, 内容如下:

# use mod_rewrite for pretty URL support
RewriteEngine on
# if a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward the request to index.php
RewriteRule . index.php

然后在 advanced/frontend/web 目录中复制一份上面的.htaccess 文件

Nginx 下的环境配置

Nginx 下的配置可能稍微复杂一些, 这里直接贴出配置, 大家请根据自己的需要进行相应的修改:

server
{
    listen 80;
    server_name testhb.miniapp.com;
    root /xiaoguoh5sdkapi/web;
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/testhb.miniappga.com.conf;
    #REWRITE-END

    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log /dev/null;
        access_log /dev/null; 
    }

    if (!-e $request_filename) {
              rewrite  ^/(.*)$  /index.php?s=/$1  last;
              break;
        }
    access_log  /www/wwwlogs/testhb.miniappga.com.log;
    error_log  /www/wwwlogs/testhb.miniappga.com.error.log;
}

至此,配置完毕.

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值