返回 打印(Print)

关于Beauty Directory

Beauty Directory是源于zdir,使用PHP开发的目录列表程序。跨平台,响应式UI,无需数据库,体积小巧,功能强大,无广告,简洁美观。

前台界面

前台手机界面

后台管理Login界面

后台界面文件一览

后台手机界面

环境要求

获取Beauty Directory源代码

扫描下方二维码,打赏一杯咖啡(30元),便可获取Beauty Directory源代码。
打赏后请联系QQ:215836979获取。

使用方法1 安装在根目录

使用方法2 安装在子目录(推荐)

注意 服务器需要设置伪静态才能正常运行,参考如下伪静态设置方法。

Apache伪静态设置方法

 RewriteEngine On
 DirectoryIndex BeautyDir/index.php
 RewriteRule 'static/(.*)$' BeautyDir/static/$1 [L] 
 Options -Indexes
 order deny,allow

Nginx伪静态设置方法

server {
  listen 80;
  server_name localhost;
  #access_log /var/log/BeautyDir.log combined;
  index BeautyDir/index.php index.html index.htm index.php;
  root /data/wwwroot/default;

  #rewrite
  rewrite ^/static/(.+) /BeautyDir/static/$1 break;
  #error_page 404 /404.html;
  #error_page 502 /502.html;

  location ~ [^/]\.php(/|$) {
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index index.php;
    include fastcgi.conf;
  }

  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
    expires 30d;
    access_log off;
  }
  location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
  }
  location ~ /\.ht {
    deny all;
  }
}

主要功能

联系我们

如果你有任何建议欢迎留言。

特别感谢

BeautyDirectory的诞生离不开以下开源项目,在此表示感谢。