ovidentia / shopping
Online shop ovidentia addon.
0.1.2
2017-02-21 16:20 UTC
Requires
- php: >=5.2.0
This package is auto-updated.
Last update: 2024-12-29 04:05:39 UTC
README
Rewriting
Apache configuration file to rewrite shop url:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^Shop/([^/]+)$ index.php?tg=addon/catalog/main&idx=catalogItem:rewritearticle&title=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php?babrw=$1 [L,QSA]
</IfModule>