Paging html pseudo-static
There is a problem with the homepage paging conversion after setting pseudo-static on the website. Can anyone help me checkhttp://www.cdlovelife.com/info-page-2/
http://www.cdlovelife.com/?page=2
Change the reference of the css file to an absolute path, do not use a relative path. That is../css/css.css--> /skin/style/css/css.css similar to
http://www.cdlovelife.com/info-page-2/ has pointed the directory to /info-page-2/, if the link to your resource is added with a relative path, it will naturally not be read.
The solution is as mentioned above, use absolute resources, starting from the root directory
http://www.cdlovelife.com/info-page-2/ has been The directory points to /info-page-2/. If the link to your resource is added with a relative path, it will naturally not be read.
The solution is as mentioned above, use absolute resources, starting from the root directory
You are right