当前位置: 编程技术>php
本页文章导读:
▪Apache错误页面404、403配置教程 - minimal 在PHP网站开发中,在用户访问网站出错、找不到页面时,会出现HTTP 404,403错误信息,为了提高用户体验,我们需要自定义404、403错误页面,提示用户下一步操作或自动跳转至合适的访问页面.........
▪XAMPP Error: Apache shutdown unexpectedly. 解决思路 - 火地晋 我建议首先 运行在cmd中运行 (安装目录)apache/bin/httpd.exe 之后就很好确定错误的具体原因了,而不是根据下面的那样猜端口,比如我遇到的问题,就是配置的路径不存在导致的。 参考资料:http:.........
▪PHP删除非空目录的三种方法(代码分享) - 漫步在互联网 PHP中对于处理文件的操作函数有许多,本文分享一个删除非空目录的函数方法。有了这个小程序,PHPer就不用手动进行删除计算机上的目录文件了,在练习PHP目录文件操作时就可以用这个函数.........
[1]Apache错误页面404、403配置教程 - minimal
在PHP网站开发中,在用户访问网站出错、找不到页面时,会出现HTTP 404,403错误信息,为了提高用户体验,我们需要自定义404、403错误页面,提示用户下一步操作或自动跳转至合适的访问页面。
自定义错误页面404、403的方法,主要通过apache或者htaccess进行配置,htaccess配置错误页面的方法适合虚拟主机用户。下面详细介绍错误页面404、403的配置教程。
apache和htaccess设置404、403错误页面的方法基本一样,如使用htaccess进行配置,注意开启htaccess配置功能,具体请参考PHP推荐教程:使用apache和htaccess对目录访问设置密码保护配置教程。
错误页面404、403配置方法
1、打开apache httpd.conf配置文件或者新建.htaccess配置文件
2、添加如下信息
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /lerrpage/404.html
3、保存apache httpd.conf或者htaccess配置文件,并重启apache
4、在网站根目录lerrpage文件夹下新建403.html和404.html文件
其他说明
你也可以在网站访问页面出现404、403错误信息时,自动跳转至首页或另一个网站,方法如下
ErrorDocument 403 /index.php
ErrorDocument 404 http://www.minimalart.cn
上述配置信息,设置在发生HTTP 403错误时,自动跳转至网站首页,发生HTTP 404错误时自动跳转至PHP教程网。
当然出于用户体验性方面的考虑,不推荐做自动跳转至首页或者其他网站的设置。
至此通过apache或者htaccess进行错误页面404、403的配置工作就完成了。
自定义错误页面404、403的方法,主要通过apache或者htaccess进行配置,htaccess配置错误页面的方法适合虚拟主机用户。下面详细介绍错误页面404、403的配置教程。
apache和htaccess设置404、403错误页面的方法基本一样,如使用htaccess进行配置,注意开启htaccess配置功能,具体请参考PHP推荐教程:使用apache和htaccess对目录访问设置密码保护配置教程。
错误页面404、403配置方法
1、打开apache httpd.conf配置文件或者新建.htaccess配置文件
2、添加如下信息
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /lerrpage/404.html
3、保存apache httpd.conf或者htaccess配置文件,并重启apache
4、在网站根目录lerrpage文件夹下新建403.html和404.html文件
其他说明
你也可以在网站访问页面出现404、403错误信息时,自动跳转至首页或另一个网站,方法如下
ErrorDocument 403 /index.php
ErrorDocument 404 http://www.minimalart.cn
上述配置信息,设置在发生HTTP 403错误时,自动跳转至网站首页,发生HTTP 404错误时自动跳转至PHP教程网。
当然出于用户体验性方面的考虑,不推荐做自动跳转至首页或者其他网站的设置。
至此通过apache或者htaccess进行错误页面404、403的配置工作就完成了。
本文链接:http://www.cnblogs.com/minimal/p/3235180.html,转载请注明。
[2]XAMPP Error: Apache shutdown unexpectedly. 解决思路 - 火地晋
我建议首先 运行在cmd中运行 (安装目录)apache/bin/httpd.exe
之后就很好确定错误的具体原因了,而不是根据下面的那样猜端口,比如我遇到的问题,就是配置的路径不存在导致的。
参考资料:
http://blog.csdn.net/klarclm/article/details/8970652
无法启动apache,显示的log为:
20:41:12 [Apache] Error: Apache shutdown unexpectedly.
20:41:12 [Apache] This may be due to a blocked port, missing dependencies,
20:41:12 [Apache] improper privileges, a crash, or a shutdown by another method.
20:41:12 [Apache] Check the "/xampp/apache/logs/error.log" file
20:41:12 [Apache] and the Windows Event Viewer for more clues
查了一下 通常是80端口 但是也需要别的端口的
通过运行apache/bin/httpd.exe 打印如下log:
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : make_sock: could not bind to address 0.0.0.0:443
也就是443端口被占用,apache无法监听443端口,该如何解决呢?
最直接的方法是关闭占用443端口的进程:
1. netstat -ano 看看 443端口被占用没 --这里 原来被虚拟机占用了 我日
2.通过cmd中打印tasklist,查找占用443端口的进程。
3.taskkill /pid 端口号 杀掉此进程,XAMPP重启apache即可。
20:41:12 [Apache] Error: Apache shutdown unexpectedly.
20:41:12 [Apache] This may be due to a blocked port, missing dependencies,
20:41:12 [Apache] improper privileges, a crash, or a shutdown by another method.
20:41:12 [Apache] Check the "/xampp/apache/logs/error.log" file
20:41:12 [Apache] and the Windows Event Viewer for more clues
查了一下 通常是80端口 但是也需要别的端口的
通过运行apache/bin/httpd.exe 打印如下log:
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : make_sock: could not bind to address 0.0.0.0:443
也就是443端口被占用,apache无法监听443端口,该如何解决呢?
最直接的方法是关闭占用443端口的进程:
1. netstat -ano 看看 443端口被占用没 --这里 原来被虚拟机占用了 我日
2.通过cmd中打印tasklist,查找占用443端口的进程。
3.taskkill /pid 端口号 杀掉此进程,XAMPP重启apache即可。
本文链接:http://www.cnblogs.com/yelaiju/p/3235514.html,转载请注明。
[3]PHP删除非空目录的三种方法(代码分享) - 漫步在互联网
PHP中对于处理文件的操作函数有许多,本文分享一个删除非空目录的函数方法。
有了这个小程序,PHPer就不用手动进行删除计算机上的目录文件了,在练习PHP目录文件操作时就可以用这个函数,在这个基础上还可以增加浏览文件夹目录,然后进行删除。
代码一:
<?php
//删除非空目录
function d_rmdir($dirname) {
if(!is_dir($dirname)) {
return false;
}
$handle = @opendir($dirname);
while(($file = @readdir($handle)) !== false){
if($file != '.' && $file != '..'){
$dir = $dirname . '/' . $file;
is_dir($dir) ? d_rmdir($dir) : unlink($dir);
}
}
closedir($handle);
return rmdir($dirname) ;
}
if(d_rmdir("./temp"))
echo "succes";
else
echo "false";
//by www.
?>
//删除非空目录
function d_rmdir($dirname) {
if(!is_dir($dirname)) {
return false;
}
$handle = @opendir($dirname);
while(($file = @readdir($handle)) !== false){
if($file != '.' && $file != '..'){
$dir = $dirname . '/' . $file;
is_dir($dir) ? d_rmdir($dir) : unlink($dir);
}
}
closedir($handle);
return rmdir($dirname) ;
}
if(d_rmdir("./temp"))
echo "succes";
else
echo "false";
//by www.
?>
代码二,来自php中文在线手册:
<?php
//删除非空目录
//by www.
functionremove_directory($dir){
if($handle=opendir("$dir")){
while(false!==($item=readdir($handle))){
if($item!="."&&$item!=".."){
if(is_dir("$dir/$item")){
remove_directory("$dir/$item");
}else{
unlink("$dir/$item");
echo"removing$dir/$item<br> ";
}
}
}
closedir($handle);
rmdir($dir);
echo"removing$dir<br> ";
}
}
?>
//删除非空目录
//by www.
functionremove_directory($dir){
if($handle=opendir("$dir")){
while(false!==($item=readdir($handle))){
if($item!="."&&$item!=".."){
if(is_dir("$dir/$item")){
remove_directory("$dir/$item");
}else{
unlink("$dir/$item");
echo"removing$dir/$item<br> ";
}
}
}
closedir($handle);
rmdir($dir);
echo"removing$dir<br> ";
}
}
?>
第三个是codebit.cn上面收集的,还是手册里的好
代码三:
<?php
//删除非空目录
//by www.
functionremoveDir($dirName)
{
if(!is_dir($dirName))
{
returnfalse;
}
$handle=@opendir($dirName);
while(($file=@readdir($handle))!==false)
{
if($file!='.'&&$file!='..')
{
$dir=$dirName.'/'.$file;
is_dir($dir)?removeDir($dir):@unlink($dir);
}
}
closedir($handle);
returnrmdir($dirName);
}
?>
//删除非空目录
//by www.
functionremoveDir($dirName)
{
if(!is_dir($dirName))
{
returnfalse;
}
$handle=@opendir($dirName);
while(($file=@readdir($handle))!==false)
{
if($file!='.'&&$file!='..')
{
$dir=$dirName.'/'.$file;
is_dir($dir)?removeDir($dir):@unlink($dir);
}
}
closedir($handle);
returnrmdir($dirName);
}
?>
本文链接:http://www.cnblogs.com/cfinder010/p/3235900.html,转载请注明。
最新技术文章: