skip to Main Content

Apache – 301 redirect to modified url from .htaccess

How to make redirect 301 from ulr: https://domen.com/some-word/* to https://domen.com/products/some-word/* using .htaccess make 301 redirect from one url to another RewriteEngine on # RewriteCond %{ENV:HTTPS} !on # RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] how i can to resolve this problem?

VIEW QUESTION

Apache Reverse Proxy Config?

can someone tell me what is wrong with my reverse proxy setup? I can successfully auth with ldap but I just get the Apache2 Default Page I tried putting the ProxyPass and ProxyPassReverse setting into the Location block but I…

VIEW QUESTION

Multi Site PHP-Apache docker

I've been trying to build a multi site Apache docker but all in vain. Here is my docker-compose.yml version: '3.9' services: app: container_name: Core build: context: ./conf/core args: UID: ${UID:-1000} env_file: - "./.env" ports: - "${HTTP_PORT:-80}:80" - "${HTTPS_PORT:-443}:443" volumes: -…

VIEW QUESTION
Back To Top
Search