T
T
Tryggvi2018-01-26 23:46:35
Layout
Tryggvi, 2018-01-26 23:46:35

Is this structure of an online store a good practice?

Hello. Now I am doing the front part of the online store, and when compiling the product catalog, a large structure appeared with many subfolders, the same thing happened with pictures. Is this categorization approach correct, or is it possible to organize such a structure in a simpler way?

.
├── 404.html
├── basket.html
├── catalog
│   ├── accessoriesFloors
│   │   └── catalogAllAccess.html
│   ├── allCatalog
│   │   └── allCatalog.html
│   ├── conditioners
│   │   └── catalogAllCond.html
│   └── warmFloors
│       ├── All
│       │   ├── catalogAllFloors.html
│       │   ├── catalogAll_next.html
│       │   ├── product1.html
│       │   ├── product2.html
│       │   ├── product3.html
│       │   └── product4.html
│       ├── cable
│       │   ├── catalogCable.html
│       │   └── product1.html
│       ├── heatingMats
│       │   ├── catalogMats.html
│       │   └── product2.html
│       └── infraredFilm
│           ├── catalogInfrared.html
│           └── product3.html
├── css
│   ├── font.css
│   └── style.css
├── font
│   └── HelveticaRegular
│       ├── HelveticaRegular.eot
│       ├── HelveticaRegular.ttf
│       └── HelveticaRegular.woff
├── images
│   ├── icon_top.png
│   ├── parthners.png
│   ├── product
│   │   ├── accessoriesFloors
│   │   │   ├── 1.jpg
│   │   │   ├── 2.jpg
│   │   │   ├── 3.jpg
│   │   │   └── 4.jpg
│   │   ├── allCatalog
│   │   │   ├── accessoriesFloors
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   └── 4.jpg
│   │   │   ├── conditioners
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   └── 4.jpg
│   │   │   └── warmFloors
│   │   │       ├── All
│   │   │       │   ├── 1.png
│   │   │       │   ├── 2.png
│   │   │       │   ├── 3.png
│   │   │       │   └── 4.png
│   │   │       ├── cable
│   │   │       │   └── 2.png
│   │   │       ├── heatingMats
│   │   │       │   └── 3.png
│   │   │       └── infraredFilm
│   │   │           └── 4.png
│   │   ├── conditioners
│   │   │   ├── 1.jpg
│   │   │   ├── 2.jpeg
│   │   │   ├── 3.jpg
│   │   │   └── 4.jpeg
│   │   └── warmFloors
│   │       ├── All
│   │       │   └── 1.png
│   │       ├── cable
│   │       │   └── 2.png
│   │       ├── heatingMats
│   │       │   └── 3.png
│   │       └── infraredFilm
│   │           └── 4.png
│   └── slides
│       ├── 1.jpg
│       ├── 2.jpg
│       ├── 3.jpg
│       ├── 4.jpg
│       └── 5.jpg
├── index.html
├── js
│   ├── buttunup.js
│   ├── html5shiv.js
│   ├── search.js
│   └── slider.js
└── robots.txt

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question