I am using the technique described here:
http://expressionengine.com/wiki/Multi_language_site_alternative/
to create a multilingual version of a website. I believe that I have everything configured properly, but for some reason, it does not appear that EE is parsing my path variable correctly.
For example, here is the code that I have set up in a directory labeled ‘es’:
<?php
// ------------------------------------------------------
// DO NOT ALTER THIS FILE UNLESS YOU HAVE A REASON TO
// ------------------------------------------------------
// Path to the directory containing your backend files
$system_path = "../cmsys/";
// ------------------------------------------------------
// MANUALLY CONFIGURABLE VARIABLES
// See user guide for more information
// ------------------------------------------------------
$template_group = "";
$template = "";
$site_url = "http://bixaldev.bixaldigitalmedia.com/es/";
$site_index = "";
$site_404 = "";
$global_vars = array(
"country_code" => "es",
"language" => "spanish"
); // This array must be associative
?>In theory, when I am on a page that has a path variable link shouldn’t the ‘/es/’ be included as part of the link? It does not seem to be happening, and I cannot figure out what I am doing wrong. Help!