If www is your apache folder and have a blog folder inside www like www/blog and your requirement to access this folder with base url and do’t want to use symlink then use below .htaccess rule:
RewriteEngine on RewriteCond %{REQUEST_URI} !^/blog/ RewriteRule ^(.*)$ /blog/$1 [NC,L]
The post Apache htaccess rule to point a directory inside directory appeared first on Techathon.