How to Fix Absolute Path Frames With Dreamweaver
An HTML iframe tag lets you include an external Web page within your local website's code. You do not need to recode the page. Instead, you use the iframe to display the external page as if the external page is a part of the local website. If the external website owner moves the target page, you must fix the absolute path or the user sees a 404 error.
Instructions
-
-
1
Right-click the HTML file that contains the iframe. Click "Open With" and select your preferred HTML editor.
-
2
Press the "Ctrl" and "F" keys, and type "<iframe" in the search text box. The editor scrolls directly to the opening iframe tag definition.
-
-
3
Edit the "src" property to the correct absolute path. The following code is an example of an iframe with an absolute path in the src property:
<iframe src="http://site.com/page.php"></iframe>
-
4
Save the file and open the page in your local browser to test the code.
-
1