} else {
IPath webContentPath = webRoot.getUnderlyingFolder().getFullPath();
IPath filePath = jsp.getFullPath();
if (filePath.matchingFirstSegments(webContentPath) == webContentPath.segmentCount()) {
String extension = filePath.getFileExtension();
filePath = filePath.removeFirstSegments(webContentPath.segmentCount());
filePath = filePath.removeLastSegments(1);
filePath = filePath.append(value);
if (filePath.getFileExtension() == null && extension != null) {
filePath = filePath.addFileExtension(extension);
}