Monday 1 August 2016

php - Not working my .htaccess and config files

I changed to the config file and .htaccess files. following files,



Config.php




$config['base_url'] = BASE_URL;

$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';



.htaccess




RewriteEngine On




RewriteBase /52322/



RewriteCond %{REQUEST_FILENAME} !-f



RewriteCond %{REQUEST_FILENAME} !-d



RewriteRule ^(.*)$ index.php?/$1 [L,QSA]




Error occur The requested URL /52322/login/ was not found on this server.




Please help me.



herewith I have attached for a screenshot.
enter image description here

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...