OpenSEF Login Problems - Joomla! Forum - community, help and support
i installed opensef , cannot log sites front end. 100% opensef because if disable works.
here htaccess
url = http://www.creditlawattorney.com
username test
password test
thanks in advance
here htaccess
code: select all
rewritecond %{http_host} ^creditlawattorney.com$ [nc]
rewriterule (.*) http://www.creditlawattorney.com/$1 [r=301,l]
##
# @version $id: htaccess.txt 4085 2006-06-21 16:03:54z stingrey $
# @package joomla
# @copyright copyright (c) 2005 open source matters. rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html gnu/gpl
# joomla! free software
##
#####################################################
# read if choose use file
#
# line below section: 'options followsymlinks' may cause problems
# server configurations. required use of mod_rewrite, may already
# set server administrator in way dissallows changing in
# .htaccess file. if using causes server error out, comment out (add # to
# beginning of line), reload site in browser , test sef url's. if work,
# has been set server administrator , not need set here.
#
# use 1 of 2 sef sections follow. lines can uncommented
# (and used) have 1 #. lines 2 #'s should not uncommented
# in section don't use, lines should start #
#
# standard sef, use standard sef section. can comment out
# of rewritecond lines , reduce server's load if you
# don't have directories in root named 'component' or 'content'
#
# if using 3rd party sef or core sef solution
# uncomment of lines in '3rd party or core sef' section
#
#####################################################
##### solving problems component url's don't work #####
# special note smf users when smf integrated , bridged
# or situation component's url's aren't working
#
# in both 'standard sef', , '3rd party or core sef' sections line:
# rewritecond %{request_uri} ^(/component/option,com) [nc,or] ##optional - see notes##
# may need uncommented. if running joomla/mambo from
# subdirectory name of subdirectory need inserted this
# line. example, if joomla/mambo in subdirectory called '/test/',
# change this:
# rewritecond %{request_uri} ^(/component/option,com) [nc,or] ##optional - see notes##
# this:
# rewritecond %{request_uri} ^(/test/component/option,com) [nc,or] ##optional - see notes##
#
#####################################################
## can commented out if causes errors, see notes above.
# options followsymlinks
#
# mod_rewrite in use
rewriteengine on
# uncomment following line if webserver's url
# not directly related physical file paths.
# update joomla/mambodirectory (just / root)
rewritebase /
########## begin - joomla! core sef section
############# use section if using joomla! core sef
## (rewritecond) lines in section required if actually
## have directories named 'content' or 'component' on server
## if not have directories 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
#
########## end - joomla! core sef section
########## begin - 3rd party sef section
############# use section if using 3rd party (non joomla! core) sef extension - e.g. opensef, 404_sef, 404sefx, sef advance, etc
#
rewritecond %{request_uri} ^(/component/option,com) [nc,or] ##optional - see notes##
#rewritecond %{request_uri} (/|\.htm|\.php|\.html|/[^.]*)$ [nc]
rewritecond %{request_filename} !-f
rewritecond %{request_filename} !-d
rewriterule (.*) index.php
#
########## end - 3rd party sef section
url = http://www.creditlawattorney.com
username test
password test
thanks in advance
hi,
change last part of htaccess to:
as can see need comment out core sef rules , use 3rd party lines (uncommented).
regards robin
change last part of htaccess to:
code: select all
#
#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
#
########## end - joomla! core sef section
########## begin - 3rd party sef section
############# use section if using 3rd party (non joomla! core) sef extension - e.g. opensef, 404_sef, 404sefx, sef advance, etc
#
rewritecond %{request_uri} ^(/component/option,com) [nc,or] ##optional - see notes##
#rewritecond %{request_uri} (/|\.htm|\.php|\.html|/[^.]*)$ [nc]
rewritecond %{request_filename} !-f
rewritecond %{request_filename} !-d
rewriterule (.*) index.php
#
########## end - 3rd party sef section
as can see need comment out core sef rules , use 3rd party lines (uncommented).
regards robin
Comments
Post a Comment