CodeIgniter Forums
Folder restrict - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Folder restrict (/showthread.php?tid=53512)



Folder restrict - El Forum - 07-27-2012

[eluser]Coder Test[/eluser]
I have my blog section in my website for which i am using Wordpress Blog

and now i need my blog url in the following format
www.example.com/codeigniter/blog/blog-detail-page/

but on using url like this it takes "blog" as controller and 'blog-detail-page' as function and searching for the class named blog.

As it is not there, its showing 404 page

i have also restricted blog in htaccess with following code

RewriteCond %{REQUEST_FILENAME} !blog(.*)$
RewriteRule ^(.*)$ codeigniter/index.php?/$1 [L]

But no use Sad Sad

Can any one please........ guide me how to proceed