Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/eshop.codeskitter.site/application/controllers/
Upload File :
Current File : /home/users/unlimited/www/eshop.codeskitter.site/application/controllers/Robots.php

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Robots extends CI_Controller {

    public function index()
    {
        header("Content-Type: text/plain");
        echo "User-agent: *\n";
        echo "Disallow: /admin\n";
        echo "Disallow: /seller\n";
        echo "Allow: /sellers\n";
    }
}