Dreamweaver CC doesn't grok Apache SSI
Unless I've missed a configuration to Dreamweaver, it doesn't seem to understand Apache 2.4. SSI.
The following should display "misc pam-current-link", which it does when loaded on an apache server. Instead, it displays "pam-current-link foobar", treating the SSI commands completely as comments.
Here's the sample code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<!--#set var="CURRENTNODE" value="misc" -->
<body>
<!--#echo var="CURRENTNODE" -->
<!--#if expr="(v('CURRENTNODE') = 'misc')" -->
pam-current-link
<!--#else -->
foobar
<!--#endif-->
</body>
</html>
