Hi there, I have a problem of “404 not found” error in my home page that I did not have before.
This is my situation.
In root there is a Joomla installation (www.mysite.it), in a subfolder there is a ojs installation (www.mysite.it/issuename).
In my config.inc.php:
base_url = "http://www.mysite.it/issuename"
base_url[index] = http://www.mysite.it/issuename/index.php/index/
base_url[myJournal] = http://www.mysite.it/issuename/index.php/magazine/
restful_urls = Off
In my .htaccess:
RewriteEngine On
RewriteBase /issuename
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
Until a few days ago it worked. If I typed the url
http://www.mysite.it/issuename
it redirected me to
http://www.mysite.it/issuename/index.php/magazine/index
Now if type or click to http://www.mysite.it/issuename
I get a “404 Not Found error”.
Any suggestion? Please help me because i’m stuck!
OJS 2.4.8.1
Thanks in advance.