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.