Hi Everyone
I am in desperate need of some help
I have a website in silverstripe and I am trying to install magento into a folder (/blog)
but when i type websitename/blog I get Sorry, 'it seems you were trying to access a page that doesn't exist.'
I am able to login as administrator if I type in websitename/blog/wp-admin/index.php
but I am not able to see the front end. I tried websitename/blog, websitename/blog/index.php none works.
If I change the index.php to index2.php I am able to see the front page websitename/blog/index2.php, but as you can understand none of the links works.
in the .htaccess in the root folder i have the code below.
### SILVERSTRIPE START ###
<Files *.ss>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Files>
<Files web.config>
Order deny,allow
Deny from all
</Files>
ErrorDocument 404 /assets/error-404.html
ErrorDocument 500 /assets/error-500.html
<IfModule mod_alias.c>
RedirectMatch 403 /silverstripe-cache(/|$)
</IfModule>
<IfModule mod_rewrite.c>
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
# Canonicalization
RewriteCond %{HTTP_HOST} !^www\.3x1\.com
RewriteRule (.*) http://www.sitename.com/$1 [R=permanent,L]
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1 [QSA]
RewriteCond %{REQUEST_URI} ^(.*)/sapphire/main.php$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . %1/install.php? [R,L]
</IfModule>
### SILVERSTRIPE END ###
in the .htaccess in the websitename/blog folder I have
# Switch rewrite engine off in case this was installed under HostPay.
RewriteEngine Off
SetEnv DEFAULT_PHP_VERSION 53
DirectoryIndex index.cgi index.php
# BEGIN WordPress
# END WordPress
I have tried lots of things nothing worked
Please I someone give me some hints.