ModRewrite не работает для сайта codeigniter

Я попробовал modrewrite для моего сайта codeigniter, но когда я зашел в файл htaccess, он уже был один.

RewriteEngine on RewriteCond $1 !^(index\.php?|combine\.php?|_images|assets|_styles|_js|favicon\.ico?|dashboard|mail) RewriteRule ^(.*)$ /index.php/$1 [L] 

Однако, когда я пытаюсь локально протестировать мой сайт в xxamp, мне нужно поставить index.php который разбивает все мои ссылки на стиль. Есть что-то, что мне не хватает? Когда сайт жив, он не требуется.

EDIT: Этот сайт был разработан на MAMP по osx, я использую xampp на окнах, думаю, что это может быть частью проблемы?

Solutions Collecting From Web of "ModRewrite не работает для сайта codeigniter"

В моем проекте CI у меня есть эти данные в .htaccess

 RewriteEngine On RewriteBase / #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 ^(.*)$ /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 ^(.*)$ /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 ^(.*)$ index.php?/$1 [L] 

Apache ищет файл .htaccess? Вы можете проверить свою конфигурацию.