6 lines
219 B
ApacheConf
6 lines
219 B
ApacheConf
|
|
# Redirect everything to /src while allowing direct access to it
|
||
|
|
RewriteEngine On
|
||
|
|
# Skip if already under /src
|
||
|
|
RewriteCond %{REQUEST_URI} !^/src/
|
||
|
|
# Redirect all to /src preserving the path
|
||
|
|
RewriteRule ^(.*)$ /src/$1 [L]
|