rath@rath-1:~/www/Pjct$
git checkout master
rath@rath-1:~/www/Pjct$
git fetch upstream master
rath@rath-1:~/www/Pjct$
git rebase upstream/master
Then from smart git
UI F7 create new Branch
PHP, Symfony, Mysql, jQuery, Ajax, Web development, Payment Gateways, CCavenue, Interview Questions, Web Service Integrations
// Find the below code
$config['index_page'] = "index.php"
// Remove index.php
$config['index_page'] = ""
Path:
Your_website_folder/
application/
assets/
system/
user_guide/
.htaccess <--------- this file
index.php
license.txt
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
// Find the below code
$config['uri_protocol'] = "AUTO"
// Replace it as
$config['uri_protocol'] = "REQUEST_URI"