rtacconi
Karma: 0
|
always file not found - 2007/05/17 10:21
I have installed remosef components, renamed htaccess.txt in .htaccess in joomla root, the prefix jos in remosef is the same of the one in .htaccess. I get always "file not found" from remosef component. Any idea. I would be nice that someone could publish a tutorial covering the hole process. Thanks in advance.
Part of .htaccess (the one decommented):
# mod_rewrite in use
RewriteEngine On
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla/MamboDirectory (just / for root)
# RewriteBase /
########## Begin - Joomla! core SEF Section
############# Use this section if using ONLY Joomla! core SEF
## ALL (RewriteCond) lines in this section are only required if you actually
## have directories named 'content' or 'component' on your server
## If you do not have directories with these names, comment them out.
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|.htm|.php|.html|/[^.]*)$ [NC]
#RewriteRule ^(content/|component/) index.php
RewriteRule ^(content/|component/|jos/) index.php
#
########## End - Joomla! core SEF Section
|