使页眉和页脚文件包含在多个html页面中。我想要创建常见的页眉和页脚页,其中包括在几个html页面。我想使用javascript。是否有一种仅使用html和JavaScript就能做到这一点的方法?我想在另一个html页面中加载一个页眉和页脚页面。
3 回答
浮云间
TA贡献1829条经验 获得超4个赞
<?php include('header.php'); ?><?php include('footer.php'); ?># re-write html to phpRewriteRule ^(.*)\.html$ $1.php [L]RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
# re-write no extension to .phpRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^([^\.]+)$ $1.php [NC,L]添加回答
举报
0/150
提交
取消
