Welcome, Guest. Register Now!
   
Mark Forums Read Mark Forums Read Mark Forums Read


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-06-2008, 05:15 PM
Junior Member
 
Join Date: May 2008
Location: Westminster, CO
Posts: 1
Question Accessing Folder without Zend

I've inherited a site that is using the Zend framework and everything works just fine, but it's the first time I've worked with Zend (I've worked with CodeIgniter a lot, though). I need to access a PHP page in a directory that doesn't need the framework. The file is in a place like this:

MyDomain.com – Buy Domains for $8.95 – Free Domain Name Management tools

The page is there, but of course when I try to access it I get the Zend error 'Invalid controller specified'. I've been messing around with the .htaccess file trying to get Zend to ignore this entire directory, but I'm not having any luck.

Does anyone have a suggestion to get Zend to ignore this directory? Thanks!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 05-07-2008, 01:24 PM
Junior Member
 
Join Date: May 2008
Posts: 2
Default

to desactivate the url rewriting for a directory you can create a .htaccess file and write in
RewriteEngine off
good luck and have a nice day
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-07-2008, 02:45 PM
Junior Member
 
Join Date: Jan 2008
Posts: 16
Default

Show us your .htaccess file
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-08-2008, 02:31 PM
Junior Member
 
Join Date: May 2008
Posts: 12
Default

If you use the following .htaccess file, it will only rewrite the url if the file you browse to doesn't exist

RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 09:57 PM.