Web Servers
How to install NGINX on NetBSD?
NGINX is a web server with excellent performance and low memory footprint. NGINX can also be used as a reverse proxy (FastCGI, Apache, uWSGI), as a proxy for mail protocols (IMAP, POP3) and as a load balancer.
In this post we will install NGINX as a FastCGI proxy then the PHP requests will be redirected to a PHP-FPM server.
How to install and configure NGINX as reverse proxy
NGINX is a web server with excellent performance and low memory footprint. NGINX can be used as a reverse HTTP proxy, as a generic TCP / UPD proxy, as a mail proxy server and as a load balancer, today we will install NGINX on Debian GNU/Linux and use it as a generic TPC/UPD proxy.
How to install Apache on Ubuntu 20.04?
The Apache HTTP Server Project is a community effort to develop and maintain a “free software” HTTP server for modern operating systems (UNIX, GNU / Linux, BSD, Windows).
How to redirect URL with Apache
mod_rewrite is a powerful and sophisticated Apache web server module that allows urls to be rewritten using regular expressions. To redirect the urls to the corresponding url with www in front.
How to install Apache web server on Android?
The Apache HTTP Server Project is a community effort to develop and maintain an open source HTTP server for modern operating systems (UNIX, GNU / Linux, BSD, Windows). The objective of this project is to provide a secure, efficient and extensible server that provides HTTP services in accordance with current HTTP standards.
Install and configure Apache HTTP server
Apache HTTP is a general purpose web server, designed to achieve a balance between flexibility, portability and performance. Apache HTTP has a modular architecture which allows to extend the basic functionality by selecting a set of modules: the modules are compiled as Dynamic Shared Objects (DSO) and they may be enabled/disabled using the LoadModule directive.
Concatenating RewriteCond
If you want to concatenate RewriteCond with logical AND it is enough to put them one under the other view:
– Convert url to lower case using Apache HTTP
If you want to concatenate them with a logical OR then we must use the [OR] operator
Convert url to lower case using Apache HTTP
If your site respond to urls that contain uppercase and lowercase characters (the same page responds to urls: yourdomain.com/my-Url, yourdomain.com/my-url), taking into account SEO parameters that is not good since the search engines are case-sensitive so you'd have more than one page indexed with the same content. A trick you can use is to convert all urls to lowercase, so: