further to my last post i tried 

httpd -TD DUMP_MODULES and i got the output below so it means rewrite is
running 

Loaded Modules:
 core_module (static)
 win32_module (static)
 mpm_winnt_module (static)
 http_module (static)
 so_module (static)
 actions_module (shared)
 alias_module (shared)
 asis_module (shared)
 auth_basic_module (shared)
 auth_digest_module (shared)
 authn_default_module (shared)
 authn_file_module (shared)
 authz_default_module (shared)
 authz_groupfile_module (share
 authz_host_module (shared)
 authz_user_module (shared)
 autoindex_module (shared)
 cgi_module (shared)
 dir_module (shared)
 env_module (shared)
 filter_module (shared)
 headers_module (shared)
 imagemap_module (shared)
 include_module (shared)
 info_module (shared)
 isapi_module (shared)
 log_config_module (shared)
 mime_module (shared)
 mime_magic_module (shared)
 negotiation_module (shared)
 rewrite_module (shared)
 setenvif_module (shared)
 ssl_module (shared)
 status_module (shared)
 userdir_module (shared)
 zend_enabler_module (shared)


neozf wrote:
> 
> I had the .so file in the modules dir
> 
> and I have this in my httpd.conf.. file 
> 
> LoadModule rewrite_module modules/mod_rewrite.so
> 
> its not commented out by the way so it is being used... however a httpd -l
> , doesnt show it in the list but i did some digging and it seems to say
> that it only shows pre installed modules with httpd -l
> 
> Sorry if this is an Apache question
> 
> 
> vince. wrote:
>> 
>> Make sure the apache module mod_rewrite is installed and turned on.
>> 
>> On Mon, Jun 22, 2009 at 1:07 PM, neozf <[email protected]> wrote:
>> 
>>>
>>> Hi
>>>
>>> I am new to zend I have downloaded the community server with the
>>> framework
>>> ... I have created a new project for the quick start on my C drive
>>>
>>> c:\ZendProject\quickstart
>>>
>>> I have added the reference to the zend framework library folder to my
>>> winodws path
>>>
>>>
>>> in my httpd.conf I have added the following
>>>
>>>
>>> <Location /quick>
>>>    Order deny,allow
>>>    Allow from all
>>> </Location>
>>>
>>> Alias /quick "C:\ZendProject\quickstart\public"
>>>
>>> I then  created a new action in the index controller just as a test
>>>
>>> public function showAction()
>>>    {
>>>
>>>            echo "Show";
>>>    }
>>>
>>>
>>> I have created a new view , under view->scripts->index and named it
>>> show.phtml
>>>
>>>
>>> My .htaccess in the public folder is the default one
>>>
>>> SetEnv APPLICATION_ENV development
>>>
>>> RewriteEngine On
>>> RewriteCond %{REQUEST_FILENAME} -s [OR]
>>> RewriteCond %{REQUEST_FILENAME} -l [OR]
>>> RewriteCond %{REQUEST_FILENAME} -d
>>> RewriteRule ^.*$ - [NC,L]
>>> RewriteRule ^.*$ index.php [NC,L]
>>>
>>>
>>> so when i do
>>>
>>> localhost/quick/index.php/index/show
>>>
>>> it works
>>>
>>> but any url without the index.php doesnt work
>>>
>>> This looks like an apache issue , but not sure how to solve it ...
>>>
>>>
>>> Thanks for your help in advance
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Getting-rid-of-Index.php-in-urls-tp24144691p24144691.html
>>> Sent from the Zend Framework mailing list archive at Nabble.com.
>>>
>>>
>> 
>> 
>> -- 
>> Vincent Gabriel.
>> Lead Developer, Senior Support.
>> Zend Certified Engineer.
>> Zend Framework Certified Engineer.
>> -- http://www.vadimg.co.il/
>> 
>> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Getting-rid-of-Index.php-in-urls-tp24144691p24147589.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to