например,
application/admin (в этой папке и файле, которые находятся в приложении )
application/front (в этой папке и файле все, что есть в приложении)
и localhost/ci/ загружаем front и localhost/ci/admin загрузить админку
как это возможно ? также не загружаются CSS и JS, что является
application/admin/assets/css/ (я использовал base_url(assets/css/cssfile.css) )
то же самое что касается fron
пожалуйста, помогите, я потратил много времени, чтобы установить это
это мой .htacess
Код: Выделить всё
RewriteEngine On
RewriteBase /codeigniter/
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /codeigniter/index.php?/$1 [L]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /codeigniter/index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /codeigniter/index.php?/$1 [L]
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /codeigniter/index.php
Код: Выделить всё
| path to your installation.
|
*/
$config['base_url'] = '';
/* variable */
$config['chemin_images'] = '/homepages/42/d422273845/htdocs/sites/markoub2/assets/images/';
$config['chemin_cars'] = '/homepages/42/d422273845/htdocs/sites/markoub2/assets/images/cars/';
/*
|--------------------------------------------------------------------------
| Index File
|--------------------------------------------------------------------------
|
| Typically this will be your index.php file, unless you've renamed it to
| something else. If you are using mod_rewrite to remove the page set this
| variable so that it is blank.
|
*/
$config['index_page'] = '';
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of 'AUTO' works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = 'AUTO';
Код: Выделить всё
Подробнее здесь: [url]https://stackoverflow.com/questions/47484836/set-admin-and-front-in-codeignitier[/url]
Мобильная версия