CodeIgniter htaccess mod_rewrite not working properly
问题 I'm trying to make the url into http://127.0.0.1/dev/blog/welcome but when I type that it changes the url to http://127.0.0.1/dev/blog/index.php/welcome But When I do http://127.0.01/dev/blog//welcome it stays like that for some reason. my .htaccess is RewriteEngine On RewriteBase /dev/blog RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1 !^(index\.php|images|robots\.txt|css) RewriteRule ^(.*)$ index.php?/$1 [L] and my config.php is configured $config[