Recent Topics

1 Feb 17, 2014 16:22    

I am running into a problem that leaves me a little puzzled. I have a new v5 b2evo script installed on my main domain root and I want to create a folder hosting static content. This content will not be using b2evo script. I have created this folder with files in it. Instead of displaying my files, it shows the b2evo 404 error. How can I get rid of this problem?

Edit:

Another problem that I do encounter: when I want to password protect my subfolder with proper htaccess file, it won't be protected, but shows 404 error.

2 Feb 18, 2014 10:06

I found the solution. I needed to change following line in root's htaccess file from:

RewriteRule . index.php [L]

to

	RewriteRule ./ /index.php [L]

3 Apr 24, 2014 15:36

I think you should use this method to help you out ...def serve(request, path, document_root, show_indexes=False)
For more information you can better follow other web servers those are serving static files.

4 Apr 24, 2014 15:38

@jameshayden wrote earlier:

I think you should use this method to help you out ...def serve(request, path, document_root, show_indexes=False)
For more information you can better follow other web servers those are serving static files.


Form is loading...