Skip to content

Instantly share code, notes, and snippets.

@mszkb
Created November 17, 2020 22:05
Show Gist options
  • Save mszkb/5f9348fcfb6bf996f4a04e8aa97f08d6 to your computer and use it in GitHub Desktop.
Save mszkb/5f9348fcfb6bf996f4a04e8aa97f08d6 to your computer and use it in GitHub Desktop.
nginx reverse proxy - remove .php from URL
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
# For LocalHost !.php
RewriteCond %{HTTP_HOST} !=localhost
RewriteCond %{HTTP_HOST} !=127.0.0.1
RewriteCond %{REMOTE_ADDR} !=127.0.0.1
RewriteCond %{REMOTE_ADDR} !=::1
## hide .php extension
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R=302,L]
# To internally forward /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ $1.php [L]

nginx reverse proxy - remove .php from URL

We assume you want to use nginx as a reverse proxy for your docker containers. You do not need to change anything of the reverse proxy conf file. The backend is php:7.2-apache, so we can use the RewriteEngine and .htaccess.

Files:

  • Dockerfile (php backend)
  • .htaccess
FROM php:7.2-apache
COPY . /var/www/html/
RUN composer install
# Important: activate rewrite mod
RUN a2enmod rewrite
RUN chown www-data:www-data *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment