Quantcast
Channel: Techathon | Techathon
Viewing all articles
Browse latest Browse all 36

Apache htaccess rule to point a directory inside directory

$
0
0

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.


Viewing all articles
Browse latest Browse all 36

Trending Articles