Hello ,
I hope , you are doing well ,
I have a confusion that i am trying to map a url to zend controller using htaccess. but it is showing my that invalid controller name .
My htaccess code is here .
SetEnv APPLICATION_ENV developmentangular
php_value "short_open_tag" "on"
php_value "session.cache_expire" "0"
RewriteEngine On
RewriteRule ^V2AWS/webservices/(.*) webservices/$1?apiVersion=V2AWS [L,QSA]
#RewriteRule ^appbuilder/creator-software$ builder/creator-software.php
#RewriteRule ^appbuilder/creator-software/$ builder/creator-software.php
RewriteRule ^show/billing/(.*) /billing/index/appId/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
php_flag magic_quotes_gpc 0
php_flag register_argc_argv 1
Which is inside the public folder.
My url is http://localhost.billing/show/billing/ef5657b355e2
and mapping url is http://localhost.billing/billing/index/appId/ef5657b355e2
. but i am getting the error that controller name in invalid . i am attaching the screenshot in the attachment section.
What i am doing wrong ,please guide me about this issue .
Thanks