Welcome Guest, Not a member yet? Register   Sign In
Run CI under Wordpress root directory
#6

You have to write your RewriteBase in the CI folders .htacces

Code:
<IfModule mod_rewrite.c>
  Options +FollowSymLinks
  RewriteEngine on
  RewriteBase /ciproject/public_html
  # Send request via index.php
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

config.php

$config['base_url'] = '';

This works for me.

Reply


Messages In This Thread
RE: Run CI under Wordpress root directory - by Rufnex - 11-25-2014, 02:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB