Posts

Showing posts with the label .htaccess

nginx rewrite and redirect rule like .htaccess in apache

In order to rewrite for example: https://www.teusonho.org/symbol/casa to /symbol.php=casa You can use: location /symbol {          rewrite ^/symbol/([^/\.]*)$ /symbol.php?symbol=$1;     }