Hello,
I managed to install ceon_uri_mapping_4.0.3_for_zc with ZC 1.3.8a. It works fine and rewriting works smoothly for all pages, except the index page.
I have bilingual site and I would like to have unique URIs for both language mutations of the homepage, such as:
site.com/en/ (originally index.php?main_page=index&language=en)
site.com/fr/ (originally index.php?main_page=index&language=fr)
I inserted these records into the mappings table (in analogous manner which worked for all other main_page=pagename pages except 'index'):
INSERT INTO ceon_uri_mappings
(uri, language_id, current_uri, main_page, query_string_parameters, associated_db_id, alternate_uri, redirection_type_code, date_added)
VALUES
('/en/', 1, 1, 'index', NULL, NULL, NULL, NULL, '2011-08-31 19:40:00'),
('/fr/', 2, 1, 'index', NULL, NULL, NULL, NULL, '2011-08-31 19:40:00');
But I can't make these URIs visible and provide unique, distinguishable URIs for each language mutation. At the moment, the homepage has the same URI for both languages. Am I missing something here?
I also tried to add language=en|fr into the query_string_parameters column. This did not solve the problem.
Many thanks for help