今天刚装了遨游浏览器,发现搜索引擎列表里没有Bing(必应)搜索的选项,就自己DIY了下. 步骤: 1. 在遨游搜索引擎列表管理里,添加一个新的搜索引擎项: Name:填写上”Bing(必应)“ (这个可以随便,你自己喜欢就行) Search Url: http://www.bing.com/search?q=%us&setmarket=zh-CN&setlang=zh-cn   (这个最核心,写对了就行了,如果你习惯语言是英语,可以把其中setlang=zh-cn替换成setlang=e…
path:packages/apps/Browser/res/values/strings.xml 修改浏览器默认主页: <!-- The default homepage. --> <string name="homepage_base" translatable="false"> http://www.baidu.com/</string> 增加修改浏览器默认的书签: <!-- Bookmarks --> <…
yum 下载apache后默认主页 默认配置文件: vim /etc/httpd/conf/httpd.conf /etc/httpd/conf.d/welcome.conf 跳转页面到 /var/www/error/noindex.html 删除noindex.html 主页就没了   测试: 打开浏览器再输入apache服务器的IP地址这时就不再是那个讨厌的apache测试主页面了   404页面设置 可以去下载一个漂亮的404错误页面,上传文件到apache服务根目录下 DocumentR…
<Engine name="Catalina" defaultHost="www.abc.com"> <Host name="www.abc.com" appBase="/home/www/abc" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware=…
服务器系统:Windows server 2008 R2 IIS版本:7.5 IIS中部署一个dotnet framework 3.5的网站应用程序,设置"默认文档"为:index.aspx 问题来了,域名绑定好后,打开“http://www.xxx.com”,却无法显示默认的主页,显示“http 400”错误,使用IP访问也不行,非要输入“http://www.xxx.com/index.aspx”才能打开默认首页,其它所有页面访问都很正常,但是非要输入文件的完整路径才能访问,通常都…
我们知道apache的配置文件httpd.conf可以配置网站目录的默认主页.配置文件该部分定义如下: #DirectoryIndex: sets the file that Apache will serve if a directory is requested. <IfModule dir_module> DirectoryIndex index.php index.php3 index.html index.htm</IfModule> 同理htaccess中的Direct…
Apache配置默认主页 进入Apache的conf目录 打开httpd.conf文件输入: 在文件末位添加: <Directory "F:/www_php/blog_com/my_blog"> Options  Indexes FollowSymLinks Includes AllowOverride None Order allow,deny Allow from all DirectoryIndex blog_index.php default.php index.h…
以IE和360浏览器为例,细心的人可能会发现.IE浏览器默认使用的必应搜索引擎(cn.bing.com) 而360安全浏览器默认使用的好搜搜索引擎.(haosou.com),对于两种浏览器,我们都可以通过设置 将他们的默认的搜索引擎更改为国人用得最多的百度,具体设置过程如下: 一.IE浏览器(Internet Explorer 8) 1.打开IE浏览器,点击搜索栏最右边的三角形,选择"查找更多提供程序..." 2.在接下来页面中的加载项中找到百度,双击,进入百度加载项页面,这时,再点击…
1.默认的项目都在目录:apache-tomcat-9.0.0.M22\webapps\ROOT下 2.该目录下有一个index.jsp是tomcat的默认主页,如下 3.现在需要修改这个默认主页,改成自己的主页 (1)修改配置文件server.xml(在conf目录下),找到如下代码: <Host name="172.18.0.5" appBase="webapps" unpackWARs="true" autoDeploy="…