php - Zend Framework htaccess Rewrite Rule -
i using zend application re-installed wamp reason , existing application run in wamp not running.
i installed wamp 2.1. zend folders follows
-application -design -public --index.php --.htaccess -library -- zend
and .htaccess
has following
options followsymlinks multiviews rewriteengine on rewritecond %{request_filename} -s [or] rewritecond %{request_filename} -l [or] rewritecond %{request_filename} -d rewriterule ^.*$ - [nc,l] rewriterule ^.*$ index.php [nc,l]
when check file root:
http://localhost/project/ -application -design -library -- zend
i didnt see public folder in path, when remove .htaccess can see folders.
how can resolve issue? want add extension wamp? checked .htaccess same before.
just click on wamp icon , open apache/httpd.conf , search "rewrite_module". remove # below , save it
loadmodule rewrite_module modules/mod_rewrite.so
and after restart service again
might solve issue
Comments
Post a Comment