Topic: Issues with /blog

Hello, recently installed monstra instead of wordpress (just to get simple) and everything worked out fine when i installed everything in folder "/test" on my server. When i then installed it (fresh) in "/"and now "/blog" stoped to work just getting "404". Any idaes? i don't have a blog folder in "/" so that doesn't seam to be the problem here, and yes Rewrite module is enabled and all the other pages does work in this case. You can see it for your self here: http://mspot.tk/

Thanks in advance

Re: Issues with /blog

@mattish.91
disable maintenance mode
so we can help you

Here you will find templates for monstra and morfy xxwebplus
Proposals to create a new template for monstra and morfy tell me your proposals xxwebplus

xxwebplus's Website

3 (edited by xxwebplus 2015-08-14 10:52:51)

Re: Issues with /blog

.htaccess

#
# Monstra CMS :: php & apache settings 
#
# Set default charset utf-8
AddDefaultCharset UTF-8
# Don't show directory listings for URLs which map to a directory.
Options -Indexes
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
    php_flag magic_quotes_gpc                 off
    php_flag magic_quotes_sybase              off
    php_flag register_globals                 off
</IfModule>
# Setting rewrite rules.
<IfModule mod_rewrite.c>
    RewriteEngine on
    # Update code bellow for SEO improvements 
    # RewriteCond %{HTTP_HOST} ^www.example.org [NC]
     # RewriteRule ^(.*)$ http://example.org/$1 [R=301,L]
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php [QSA,L]
    # Update code bellow for SEO improvements 
    # Redirect 301 /home http://example.org/
</IfModule>
Here you will find templates for monstra and morfy xxwebplus
Proposals to create a new template for monstra and morfy tell me your proposals xxwebplus

xxwebplus's Website