Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have installed Wordpress on my server and I have a Codeigniter folder inside it.
I am able to view my wordpress site at http://mydomain.com .
Now I want to use to view the my codeigniter url like http://mydomain.com/user/login , where user is my controller and login is my function.

can you please help me out using htaccess.

Thank you in advance

share|improve this question
The wordpress .htaccess rewrites everything non-existant through the wordpress' index.php. You can put the CI application in a subfolder, or you can add exceptions to the default wordpress .htaccess, someting along RewriteRule %{REQUEST_URI} !^(user/|admin/|other_controller/), but this may interefe with certain article titles – Silviu G Jan 18 at 11:41

1 Answer

You can add an alias on your virtualhost :

Alias /user /path/to/your/condigniter/root/folder

I did the reverse, putting Wordpress on a blog folder and both works fine, the alias serves me well.

 http://domain.tld <== Codeigniter
 http://domain.tld/blog <== Wordpress


Alias /blog /path/to/my/wordpress/root/folder
share|improve this answer
The OP wants a htaccess solution, I didn't pay attention to that – Hicham LEMGHARI Jan 18 at 11:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.