Presta atención porque en este artículo encontrarás el arreglo que buscas.Este tutorial fue analizado por nuestros expertos para garantizar la calidad y veracidad de nuestro contenido.
Ejemplo 1: cómo eliminar index.php en codeigniter
#By default, the index.php file will be included in your URLs:# Create a .htaccess file in your root folder and paste the below code
RewriteEngine On
RewriteCond %REQUEST_FILENAME!-f
RewriteCond %REQUEST_FILENAME!-d
RewriteRule ^(.*)$ index.php/$1[L]?>
Ejemplo 2: archivo .htaccess para codeigniter
RewriteEngine On
RewriteCond %REQUEST_FILENAME!-f
RewriteCond %REQUEST_FILENAME!-d
RewriteRule ^(.*)$ index.php/$1[L]
Ejemplo 3: eliminar index.php en codeigniter
RewriteEngine on
RewriteCond$1!^(index.php|resources|robots.txt)
RewriteCond %REQUEST_FILENAME!-f
RewriteCond %REQUEST_FILENAME!-d
RewriteRule ^(.*)$ index.php/$1[L,QSA]
Ejemplo 4: eliminando index.php en codeigniter
//find the below code $config['index_page']="index.php"//replace with the below code$config['index_page']=""
Aquí puedes ver las reseñas y valoraciones de los lectores
Si eres capaz, tienes el poder dejar una noticia acerca de qué le añadirías a este post.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)