搜索

Advanced Search

Here are a few examples of how you can use the search feature:

Entering this and that into the search form will return results containing both "this" and "that".

Entering this not that into the search form will return results containing "this" and not "that".

Entering this or that into the search form will return results containing either "this" or "that".

Search results can also be filtered using a variety of criteria. Select one or more filters below to get started.

Assuming apache is required, and com is required, the following 19 results were found.

  • How to Install a LAMP Stack on Ubuntu 16.04

    How to Install a LAMP Stack on Ubuntu 16.04

    A LAMP (Linux, Apache, MySQL, PHP) stack is a common, free and open-source web stack used for hosting web content in a Linux environment. Many consider it the platform of choice on which to develop and deploy high-performance web apps. This guide shows...

  • 在ubuntu12.04上架设LAMP(Linode完整教程)

    在ubuntu12.04上架设LAMP(Linode完整教程)

    This guide provides step by step instructions for installing a full featured LAMP stack on an Ubuntu 12.04 (Oneiric) system. In this guide, you will be instructed on setting up Apache, MySQL, and PHP. If you don't feel that you will need MySQL or PHP,...

  • 在Linux服务器(ubuntu)上使用Apache为odoo openerp配置域名

    Odoo is very well known ERP system today. Odoo 9 provides great features that will help to grow business. By default odoo runs over port 8069. So we are accessing server using domain:8069. What if we need to access server using only domain like a...

  • How to Install a LAMP Stack on Ubuntu 14.04

    How to Install a LAMP Stack on Ubuntu 14.04

    Before You Begin Ensure that you have followed the Getting Started and Securing Your Server guides, and the Linode’s hostname is set.To check your hostname run: 1 2 hostname hostname -f The first command should show your short hostname, and the second...

  • Setting Up Subdomains in Linode and Apache

    I’ve been using Linode for a few months to host about a dozen websites and I’ve been very happy with the experience. I have found the documentation at Linode to be clear and concise, especially when it comes to setting up multiple sites using a...

  • Ubuntu 启用 Apache Mod_rewrite 模块

    Apache的rewrite模块,提供了一个基于规则的重写(rewrite,也许译为重构更为合适)引擎,来实时重写发送到Apache的请求URL。因功能极其强大,被称为URL重写的“瑞士军刀”。 在 Ubuntu 中可以使用下面的方法来开启Mod_rewrite 模块。 启用 Mod_rewrite 模块 在终端中执行 sudo a2enmod rewrite 指令后,即启用了 Mod_rewrite 模块。 另外,也可以通过将...

  • RewriteCond和13个mod_rewrite应用举例Apache伪静态

    RewriteCond和13个mod_rewrite应用举例Apache伪静态

    1.给子域名加www标记 RewriteCond %{HTTP_HOST} ^([a-z.]+)?example\.com$ [NC] RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule .? http://www.xample.com%{REQUEST_URI} [R=301,L] 这个规则抓取二级域名的%1变量,如果不是以www开始,那么就加www,以前的域名以及{REQUEST_URI}会跟在其后。 2.去掉域名中的www标记...

  • ubuntu命令大全

    安装中文输入法 sudo apt-get install scim sudo apt-get install scim-chinese sudo apt-get install scim-config-socket sudo apt-get install scim-gtk2-immodule sudo apt-get install scim-tables-zh wget -c http://frankandjacq.com/ubuntuguide/fireflysung-1.3.0.tar.gz...

  • Ubuntu下的计划任务 -- cron的基本知识

    cron是一个Linux下的后台进程,用来定期的执行一些任务。因为我用的是Ubuntu,所以这篇文章中的所有命令也只能保证在Ubuntu下有效,但其他系统应该也差不多。 想要让cron执行你指定的任务,首先就要编辑crontab文件。crontab是一个文本文件,用来存放你要运行的命令。你可以以下命令 Shell代码 crontab -e 来打开你的用户所属的crontab文件。第一次用这个命令,会让你选择文本编辑器,我选的是vim。选定的编辑器也可以使用 Shell代码 select-editor...

  • Ubuntu 从php5.5.9升级到php7.1

    1. 先升级: sudo apt-get update 2. 然后添加PPA: sudo add-apt-repository ppa:ondrej/php 2.1 If add-apt-repository isn’t found, you can install it by way of the python-software-properties package: sudo apt-get install python-software-properties 3.Once you get...

  • CentOS 安装LNMP环境

    阿里云的云服务器(ECS)可以选择多种操作系统,打算用它运行 Drupal 或者 WordPress ,你最好选择 Linux 系统,这篇文章的演示是基于阿里云的 CentOS 操作系统的服务器。我们在上面搭建一个 nginx + mysql + php-fpm 的环境,这就是常说的 LNMP 。我们不过多解释什么是什么,而是着重讲流程与方法,想了解具体的细节,去搜索下吧:)这个手册是在阿里云上测试的,不过应该也适用于其它使用 CentOS 系统的服务器。 背景 宁皓网的《...

  • AWStats on Ubuntu 10.04 Server

    Yesterday I finalized moving my websites to my new Linode. With all the base configuration done, it is time to start installing some monitoring and stats tools. AWStats in particular is one of my favorite tools for analyzing web traffic. This guide...

  • godaddy apache域名自动跳转到www二级域名的设置

    先确保mod_rewrite已启用, 然后再.htaccess文件中添加以下语句,做301网页重定向: RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301] 以上“domain.com”替换成自己的域名即可。

  • Apache配置cookie的HttpOnly属性

    # vi /etc/apache2/sites-available/example.com.conf Header set Set-Cookie HttpOnly;Secure

  • Apache X-Frame-Options配置

    X-Frame-Options HTTP 响应头是用来给浏览器指示允许一个页面可否在 , 或者 中展现的标记。网站可以使用此功能,来确保自己网站的内容没有被嵌到别人的网站中去,也从而避免了点击劫持 (clickjacking) 的攻击。 X-Frame-Options有三种可配置值 X-Frame-Options: DENY X-Frame-Options: SAMEORIGIN X-Frame-Options: ALLOW-FROM https://example.com/ DENY...

  • MAMP 选择php版本

    MAMP 选择php版本

    MAMP默认控制面板只能选择2个php版本,如果要设置更低(更老)的版本,可以采用以下方法 MAMP automatically rewrites the following line in your /Applications/MAMP/conf/apache/httpd.conf file when it restarts based on the settings in preferences. You can comment out this line and add the second...

  • Apache header cookie设置

    Apache header cookie设置

    # a2enmod expires # a2enmod deflate # vi /etc/apache2/sites-available/example.com.conf # gzip html, css and js AddOutputFilterByType DEFLATE text/html text/css application/x-javascript application/javascript #启用过期header功能 ExpiresActive On...

  • Linux平台下如何重置mysql的root密码

    1.首先确认服务器出于安全的状态,也就是没有人能够任意地连接MySQL数据库。 因为在重新设置MySQL的root密码的期间,MySQL数据库完全出于没有密码保护的状态下,其他的用户也可以任意地登录和修改MySQL的信息。可以采用将MySQL对外的端口封闭,并且停止Apache以及所有的用户进程的方法实现服务器的准安全状态。最安全的状态是到服务器的Console上面操作,并且拔掉网线。 2.修改MySQL的登录设置: # vi /etc/my.cnf...

  • Dedicated Servers

    The Best Dedicated Server Hardware & Management! [jvservices title="High Class Data Centers and Machines!" color="primary" icon="fa fa-2x fa-check-circle-o"] No matter which location you choose for your dedicated server, you can be sure that it will be...

Results 1 - 19 of 19