Package Install
The easiest installation method — no build step required.
Download
Get the latest release from one of these sources:
- Official: innoshop.cn/versions
- GitHub: innocommerce/innoshop
- Gitee: innoshop/innoshop
Installation Steps
- Unzip the downloaded package to your target directory
- Set your web root to the
public/directory - Configure URL rewrite rules (see below)
- Open your browser and follow the installation wizard
URL Rewrite Configuration
Nginx
nginx
location / {
try_files $uri $uri/ /index.php?$query_string;
}Apache
No extra configuration needed — public/.htaccess already includes rewrite rules.