Skip to content

Instantly share code, notes, and snippets.

@ljanecek
Created May 8, 2016 20:51
Show Gist options
  • Select an option

  • Save ljanecek/8c44b1e268d0043477dfc332285930ec to your computer and use it in GitHub Desktop.

Select an option

Save ljanecek/8c44b1e268d0043477dfc332285930ec to your computer and use it in GitHub Desktop.
.htaccess
-----
RewriteEngine on
RewriteRule ^([a-z]{2}(-[A-Z]{2})?)/(.*) $3?lang=$1 [L,QSA]
index.php
-----
<?php
$txt = null;
if(isset($_GET['lang'])){
switch ($_GET['lang']) {
case 'en':
$txt = include('en.php')
break;
default:
$txt = include('cz.php')
break;
}
}
Někde na webu
-----
<?= $txt['title'] ?>
en.php
-----
<?php
return array(
'title' => 'Some title'
);
cz.php
-----
<?php
return array(
'title' => 'Nějaký nadpis'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment