skip to Main Content

SEO and multi language support

I run a website built with Angular and I used angular-gettext to integrate and support several languages: https://angular-gettext.rocketeer.be/ I don't want to change my site structure using domain-specific subdomain or url like https://en.example.com/ or https://www.example.com/en/. So far I store a…

VIEW QUESTION

php multilanguage script and security – Plesk

I use this script to enable multilanguage on my website : <?php // Start a Session, You might start this somewhere else already. session_start(); // What languages we support $available_langs = array('en','ro'); if(isset($_GET['lang']) && $_GET['lang'] != ''){ // check if…

VIEW QUESTION

AngularJS multilanguage URL routing with links – SEO

I have an AngularJS webapp. I´m changing the application so the URLs can be multilanguage (for SEO indexing purposes). I´m setting up my app.js, like this: $routeProvider.when('/:language', {templateUrl: 'partials/home.html', controller: 'HomeCtrl'}); $routeProvider.when('/:language/about', {templateUrl: 'partials/about.html', controller: 'AboutCtrl'}); Then, in a service…

VIEW QUESTION
Back To Top
Search