zoukankan      html  css  js  c++  java
  • php网站目录结构

    方案1:
    root_dir
            –config
            –include
                                              news.php(基础处理类)
                                              member.php
                                              admin.php
            –lib(文件夹内放置smarty的相关文件)
            –templates
                    –news
                    –member
                    –admin
            –templates_c
                    –news
                    –member
                    –admin               
            –cache
                    –news
                    –member
                    –admin
            –images
                    –news
                    –member
                    –admin
            –js
            –css
                    news.css
                    member.css
                    admin.css
            –news(新闻模块的php处理,例news_list.php,news_detail.php,news_insert.php诸如此类)
            –member(用户模块的php处理)
            –admin(管理模块的php处理)
            index.php

    ——————————————————-分割线————– ———————————————————–
    方案2:
    root_dir
            –config
            –include
                                              news.php(基础处理类)
                                              member.php
                                              admin.php
            –lib(文件夹内放置smarty的相关文件)
            –news(新闻模块)
                    –templates
                    –templates_c
                    –cache
                    –images
                    –js
                    –css
            –member(用户模块)
                    –templates
                    –templates_c
                    –cache
                    –images
                    –js
                    –css
            –admin(管理模块)
                    –templates
                    –templates_c
                    –cache
                    –images
                    –js
                    –css
            index.php

  • 相关阅读:
    Change the default MySQL data directory with SELinux enabled
    CentOS7使用firewalld打开关闭防火墙与端口
    常用screen参数
    Android手机上浏览器不支持带端口号wss解决方案
    How to Create Triggers in MySQL
    QT GUI @创建新的工程
    Linux内核源代码的结构(转)
    ARM体系的7种工作模式
    C语言中强制数据类型转换(转)
    Linux驱动设计—— 中断与时钟@request_irq参数详解
  • 原文地址:https://www.cnblogs.com/luluping/p/1560770.html
Copyright © 2011-2022 走看看