#!/bin/bash url=$1 if [[ "$url" =~ .*"..".* ]]; then url="/" fi if [ -f "./public/$url/index.bhtml" ]; then url="/$url/index.bhtml" fi echo $url