Home > Article > Web Front-end > Pseudo-static page change is wrong, please help to solve it_html/css_WEB-ITnose
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/The pseudo-static rule is: RewriteRule ^(.*)/info-page -([0-9] )/$ $1/?page=$2
http://www.cdlovelife.com/?page=2All other pseudo-static conversions are no problem
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