EVOLUTION-NINJA
Edit File: .htaccess
# <IfModule mod_rewrite.c> # RewriteEngine On # RewriteCond %{REQUEST_FILENAME} !-f # RewriteCond %{REQUEST_FILENAME} !-d # RewriteRule ^(.*)$ index.php/$1 [L] # </IfModule> <IfModule mod_rewrite.c> RewriteEngine On # Allow Large File Uploads php_value upload_max_filesize 512M php_value post_max_size 512M php_value memory_limit 512M php_value max_execution_time 600 php_value max_input_time 600 # Remove index.php from URL RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L] </IfModule>