Review App

Internet Entrepreneurs Blog

Review App Settings -> About

This form allows you to name your website and provide a brief description of what your site is about. The name you set here will be used for the default page title (title tag) for pages that do not have unique titles. The description will be used as the default meta description for pages that do not have unique meta description data. Keywords will be added to the list of keywords in your meta keyword tag.

The item category should describe what your data items are about. This will be your review app subject and all sections and categories will fall under this. In particular, this will be the top of your category and item “breadcrumb” lists.

SEO Friendly URLS: Click the checkbox to enable search engine friendly URLS on your site. For this to work properly you’ll need access to your site’s .htaccess file so only choose this option if you know how to use mod-rewrite on your site. You will configure the fields that are used for your SEO URLs for each section under the ‘Sections’ tab.

The default URL structures for category and listing pages are:

  • SECTION/CATEGORY_#CID.html
  • SECTION/CATEGORY/LISTING_#CID_#LID.html

Where SECTION is the section name, CATEGORY is the category name, LISTING is the listing name and #CID and #LID are the category and listing IDs, respectively. To utilize this default structure, add the following lines to your .htaccess file (located at the root of your Review App installation):

RewriteEngine on
RewriteRule ([^/]+)/([^/]+)_([0-9]+).html ./category.php?id=$3 [QSA]
RewriteRule ([^/]+)/([^/]+)/([^/]+)_([0-9]+)_([0-9]+).html item.php?i=$5&c=$4