Back To List | Troubleshooting | Showing 22 Of 22 | Prev |
KB4201048 : I had checked on S.E.F option of respective module, it able perform , but the front end page display was out of layout setting , and some of the url was unable to perform.2009-01-20 |
This issue is due to the reference path was incorrectly , especially for the code used parent path eg : ../ After user had checked on SEF url , it will convert the dynamic url to static url , for example Front end view url path Dynamic url as below http://www.yourdomain.com?index.php?cat_id=2&photo=1 after convert it into Static url http://www.yourdomain.com/2/1/index.html
Source code view Dynamic url <img src = "../img/pictures.jpg"> browser interpret --> http://www.yourdomain.com?index.php?cat_id=2&photo=1 (image able to display properly) Static url <img src = "../img/pictures.jpg"> browser interpret --> http://www.yourdomain.com/2/1/index.html (image unable to display , due to the extra slashes ) |
|
|