bludit/bl-kernel
Jonathan Holvey d8a73e7951 Allow URLs to be rewritten to server root using external .htaccess
For example, with the following directory structure, Bludit is
installed in its own subdirectory:

web_root
├── .htaccess
└── bludit
    ├── bl_content
    ├── bl_kernel
    │    ...
    ├── .htaccess
    ├── index.php
    └── install.php

However, it may be desired that Bludit's URLs are based from the web
root, not /bludit:

Good:	http://example.com/about
Bad: 	http://example.com/bludit/about

The config file web_root/.htaccess includes the following rule to
rewrite requests to web_root/bludit:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) bludit/$1 [NC,L,QSA]

When a page is accessed, Bludit finds that the URL /about doesn't
match the script path bludit/index.php, and assumes that the site's
root should therefore be "/".
2017-08-26 13:21:03 +10:00
..
2017-04-30 00:17:54 +08:00
2017-05-22 12:59:36 +05:30
2016-09-25 23:30:06 -03:00
2017-05-10 21:30:52 +07:00
2016-09-25 23:57:11 -03:00
2017-05-04 21:32:18 +02:00
2017-05-03 21:10:03 +02:00
2017-04-26 21:26:17 +02:00
2017-05-03 21:10:03 +02:00
2017-05-03 21:10:03 +02:00
2016-09-26 00:25:40 -03:00
2017-05-15 23:18:24 +02:00
2016-01-20 21:29:01 -03:00
2016-01-20 23:16:32 -03:00
2016-09-21 23:12:29 -03:00