x
SEO & URLs 43
ID Page Page title Friendly URL
--
1 address Address address
2 addresses Addresses addresses
3 attachment Attachment attachment
4 authentication Login login
5 best-sales Best sales best-sales
6 cart Cart cart
10 contact Contact us contact-us
11 discount Discount discount
12 favicon Favicon favicon
13 getfile Getfile getfile
14 guest-tracking Guest tracking guest-tracking
15 history Order history order-history
16 identity Identity identity
17 index
18 manufacturer Manufacturers manufacturers
19 my-account My account my-account
20 new-products New products new-products
21 order Order order
22 order-confirmation Order confirmation order-confirmation
23 order-detail Order-detail order-detail
24 order-follow Order follow order-follow
25 order-opc Order quick-order
26 order-return Order-return order-return
27 order-slip Credit slip credit-slip
28 pagenotfound Page not found page-not-found
29 password Forgot your password password-recovery
30 pdf-invoice Pdf-invoice pdf-invoice
31 pdf-order-return Pdf-order-return pdf-order-return
32 pdf-order-slip Pdf-order-slip pdf-order-slip
33 prices-drop Prices drop prices-drop
35 products-comparison Products Comparison products-comparison
36 search Search search
37 sitemap Sitemap sitemap
38 statistics Statistics statistics
39 stores Stores stores
40 supplier Suppliers supplier
41 module-bankwire-payment
42 module-bankwire-validation
43 module-beesblog-category
44 module-beesblog-post
45 module-blocknewsletter-verification
46 module-collectlogs-cron
47 module-collectlogs-api
Set up URLs
Set shop URL
Here you can set the URL for your shop. If you migrate your shop to a new URL, remember to change the values below.
Schema of URLs
This section enables you to change the default pattern of your links. In order to use this functionality, thirty bees' "Friendly URL" option must be enabled, and Apache's URL rewriting module (mod_rewrite) must be activated on your web server.
There are several available keywords for each route listed below; note that keywords with * are required!
To add a keyword in your URL, use the {keyword} syntax. If the keyword is not empty, you can add text before or after the keyword with syntax {prepend:keyword:append}. For example {-hey-:meta_title} will add "-hey-my-title" in the URL if the meta title is set.
Keywords: id, rewrite*, ean13, category, categories, reference, meta_keywords, meta_title, manufacturer, supplier, price, tags, any
Keywords: id, rewrite*, categories, meta_keywords, meta_title
Keywords: id, selected_filters*, rewrite*, categories, meta_keywords, meta_title
Keywords: id, rewrite*, meta_keywords, meta_title
Keywords: id, rewrite*, meta_keywords, meta_title
Keywords: id, rewrite*, categories, meta_keywords, meta_title
Keywords: id, rewrite*, categories, meta_keywords, meta_title
General
Your robots.txt file MUST be in your website's root directory and nowhere else (e.g. http://www.example.com/robots.txt). Generate your "robots.txt" file by clicking on the following button (this will erase the old robots.txt file)
.htaccess file
# ~~start~~ Do not remove this comment, thirty bees will keep automatically the code outside this comment when .htaccess will be generated again # .htaccess automatically generated by thirty bees e-commerce open-source solution # http://www.thirtybees.com - http://www.thirtybees.com/forums <IfModule mod_rewrite.c> <IfModule mod_env.c> SetEnv HTTP_MOD_REWRITE On </IfModule> RewriteEngine on # Domain: back.thirtybees.com RewriteRule . - [E=REWRITEBASE:/] # Webservice API RewriteRule ^api$ api/ [L] RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] </IfModule> AddType application/vnd.ms-fontobject .eot AddType font/ttf .ttf AddType font/otf .otf AddType font/woff .woff AddType font/woff2 .woff2 <IfModule mod_headers.c> <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|svg)$"> Header set Access-Control-Allow-Origin "*" </FilesMatch> </IfModule> #If rewrite mod isn't enabled ErrorDocument 404 /index.php?controller=404 # ~~end~~ Do not remove this comment, thirty bees will keep automatically the code outside this comment when .htaccess will be generated again