Matt S Trout-2 wrote:
>
>> Apache says:
>>
>> File does not exist: c:/webs/webapp/www/somecontroller/
>
> Then the request isn't even getting to Catalyst. Check your apache config.
>
Matt,
To prove what you said, a die statement in the :Local action produced the
same apache error. Thanks for that.
So why would these requests be captured by Catalyst:
http://webapp.thing/
http://webapp.thing/something
while this one isn't:
http://webapp.thing/comecontroller/something
As you suggested, I checked the vhosts file and sure enough, the problem was
with the RewriteRule. I changed this:
RewriteRule ^([A-Za-z0-9-]+)?$ index.pl/$1
to this:
RewriteRule ^([A-Za-z0-9-/]+)?$ index.pl/$1
and problem solved.
Thank you very much. I spent many hours scratching my head on that one.
Anne
--
View this message in context:
http://www.nabble.com/Local-action-in-controller-not-mapping-to-template-%28retry%29-tp23123769p23138818.html
Sent from the Catalyst Web Framework mailing list archive at Nabble.com.
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/