ovidentia/shopping

Online shop ovidentia addon.

0.1.2 2017-02-21 16:20 UTC

This package is auto-updated.

Last update: 2024-04-29 02:42:34 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>