编辑成多个HTML页面

时间:2011-06-24 08:03:04

标签: html

我的HTML网站包含大约330多个HTML文件。但是,每次我想编辑一些代码或标签时,我都会陷入困境。 我彻底搜索了网,但找不到一个可以做到这一点的免费工具。我使用了Notepad ++,但是用一个Tag替换了文本。

2 个答案:

答案 0 :(得分:1)

如果您想要整体更改代码块,http://www.wingrep.com/之类的内容可以在多个文件中查找和替换。

答案 1 :(得分:1)

未来的一些方面是使用php从单独的文件导入页眉,页脚和侧边栏。这样你只需要改变一个文件。

<?php include 'header.php';?>

<?php include 'footer.php';?>

<?php include 'sidebar.php';?>

现在对你没什么用处,但也许是我最近遇到的最有用的东西:0)


防止RFI攻击(我在某处某篇文章中遇到过这种情况)

 Here we check our query string for http://, https:// or ftp://

 RewriteCond %{QUERY_STRING} (.*)(http|https|ftp):\/\/(.*)

 If you are using this rewrite within a .htaccess all you have left is to deny access from all matching requests.

 RewriteRule ^(.+)$ - [F]

 If you have access to your vhost you could also log those requests like this:

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteCond %{QUERY_STRING} (.*)(http|https|ftp):\/\/(.*)
   RewriteRule ^(.+)$ - [env=rfi:true]
</IfModule>

CustomLog /path/to/logs/rfi.log combined env=rfi

You will also have to deny access from requests that have been caught by the above rewrite

Deny from env=rfi