Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter with Wordpress in a subdirectory
#1

[eluser]Unknown[/eluser]
Hey guys,

I need a hand on my site, I'm running it completely in CodeIgniter, but have decided to strap on a WordPress blog.

The directory of wordpress is /wordpress/

CodeIgniter isn't in the root, it's in /ci/

Have tried all the usual solutions, and I'm getting nowhere. I can access /wordpress/ fine, but any links within that are busted.

Here is my htaccess in the root:
Code:
php_flag magic_quotes_gpc off
php_flag register_globals off

<IfModule mod_rewrite.c>
    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(images|css|js|swf|flv)\/(.+)\.(css|js|swf|jpg|png|gif|flv)$ visiontech/app/views/$1/$2.$3
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^e/([a-zA-Z\-_]+)/(\d+)$ np/preview.php?id=$2&outside=true [L]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

I've also read that I should put a htaccess in the WP directory, have put the following in, but not sure if it's even making it that far:
Code:
# -Wordpress-
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Any help would be awesome! Thanks guys,

JC


Messages In This Thread
CodeIgniter with Wordpress in a subdirectory - by El Forum - 05-07-2011, 05:59 AM
CodeIgniter with Wordpress in a subdirectory - by El Forum - 05-19-2011, 10:42 PM
CodeIgniter with Wordpress in a subdirectory - by El Forum - 05-19-2011, 11:44 PM



Theme © iAndrew 2016 - Forum software by © MyBB