Open local xhtml files in chrome, however, chrome treats it as XML files, and won't render it as HTML.
I don't want to change all my *.xhtml file extension to .html, so is there any workaround?
EXAMPLE
a.xhtml:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Example</title>
</head>
<body>
<b>Hello</b>,
<i>World</i>!
</body>
</html>
