enigma1, on Apr 24 2007, 11:05 AM, said:
ok can you give me an example so I can replicate it here?
Configuration redirect page is index.asp
what's the .htaccess rules you have in the catalog? What's the admin location. Just give examples so I can understand the structure not the actual urls.
like
www.mysite.com/catalog/
www.mysite.com/admin/
or
www.mysite.com/catalog/
www.mysite.com/catalog/admin/
etc.
www.mysite.com/
www.mysite.com/admin/
www.mysite.com/htaccess
# $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $
#
# This is used with Apache WebServers
#
# For this to work, you must include the parameter 'Options' to
# the AllowOverride configuration
#
# Example:
#
#
# AllowOverride Options
#
#
# 'All' with also work. (This configuration is in the
# apache/conf/httpd.conf file)
# The following makes adjustments to the SSL protocol for Internet
# Explorer browsers
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# If Search Engine Friendly URLs do not work, try enabling the
# following Apache configuration parameter
#
# AcceptPathInfo On
# Fix certain PHP values
# (commented out by default to prevent errors occuring on certain
# servers)
#
#
# php_value session.use_trans_sid 0
# php_value register_globals 1
#
#-MS- SEO-G Added
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^(.*).html$ root.php?%{QUERY_STRING}
#-MS- SEO-G Added EOM
www.mysite.com/admin/htaccess
AuthType Basic
AuthName "Restricted Area"
AuthUserFile "/home/publicwh/.htpasswds/admin/passwd"
require valid-user
let me know if you need more info...Appreciate your time greatly.