Search code examples
phpurlcodeigniter-3

Double slash issue in Codeigniter URL


I am facing double slash issue in codeigniter url which seems like

http://localhost/school/admin//categories/add

My $config['base_url'] = 'http://localhost/school/admin/';

By removing of end slash same double slashes shows i mean ($config['base_url'] = 'http://localhost/school/admin';)

Also by making blank $config['base_url'] = ''; same issue of double remain.

And my htaccess is as

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php?/$1 [L]

Kindly help me where the issue is occurring.


Solution

  • I was using admin_url(); in the url helper.which has already the back slash.so when i use admin_url().'/categories/add' this generate double slash.so solved simply removing the one custom back slash.i.e admin_url().'categories/add'