bobthemolder:
AFAIK, you can only have 1 .htaccess
Sometimes multiple will get created when you make backups, but you should find the right/active one and delete the rest.
Wordpress shouldn't be doing anything to your .htaccess unless it's in the same directory.
Got a note back from host.
They pointed out some Wordpress text within the /public_html/.htaccess so I removed that text and left the script.
If we are only suppose to have one htaccess file, then any idea what all these others are, and if they are necessary..
Is having so many likely causing the problem ? Does Google get confused ? :blink:
/public_html/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
/public_html/taogemst_myzencart/images/uploads
$Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
This is used with Apache WebServers
The following blocks direct HTTP requests in this directory recursively
For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
Example:
#<Directory "/usr/local/apache/htdocs">
AllowOverride Limit
'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
This does not affect PHP include/require functions
<Files *>
Order Deny,Allow
Deny from all
</Files>
/public_html/taogemst_myzencart/googlecheckout/logs/.htaccess
$Id: .htaccess 2856 2007-06-08 00:42:19Z Ropu $
This is used with Apache WebServers
The following blocks direct HTTP requests in this directory recursively
This will prevent access to logs from the web
<Files *.log>
Order Deny,Allow
Deny from all
Allow from localhost
</Files>
/public_html/taogemst_myzencart/includes/.htaccess
$Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
This is used with Apache WebServers
The following blocks direct HTTP requests in this directory recursively
For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
Example:
#<Directory "/usr/local/apache/htdocs">
AllowOverride Limit
'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
This does not affect PHP include/require functions
<Files *.php>
Order Deny,Allow
Deny from all
</Files>
/public_html/taogemst_myzencart/includes/modules/payment/linkpoint_api/.htaccess
Prevent unauthorized access to your private .PEM file
<Files ~ ".(pem)$">
Order allow,deny
Deny from all
</Files>
/home/taogemst/public_html/taogemst_myzencart/includes/classes/support/.htaccess
$Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
This is used with Apache WebServers
The following blocks direct HTTP requests in this directory recursively
For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
Example:
#<Directory "/usr/local/apache/htdocs">
AllowOverride Limit
'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
This does not affect PHP include/require functions
<Files *.php>
Order Deny,Allow
Deny from all
</Files>
/public_html/taogemst_myzencart/cache/.htaccess
#prevent directory browsing -- for security
IndexIgnore /
<Limit GET POST PUT>
Order Allow,Deny
Deny from All
</Limit>
/public_html/taogemst_myzencart/pub/.htaccess
#prevent directory browsing -- for security
IndexIgnore /
Options +FollowSymLinks -Indexes
/public_html/taogemst_myzencart/extras/htaccess_for_page_not_found_redirects.htaccess
be sure to add any extra paths required to locate the index.php
then relocate this file to the root of your store's folders, and rename it as .htaccess
ErrorDocument 404 http://www.MYSITE.COM/index.php?main_page=page_not_found
/public_html/taogemst_myzencart/editors/.htaccess
#prevent directory browsing -- for security
IndexIgnore /
/public_html/taogemst_myzencart/admin/htaccess.php
$Id: .htaccess 1105 2005-04-04 22:05:35Z birdbrain $
This is used with Apache WebServers
For this to work, you must include the parameter 'Options' to
the AllowOverride configuration
Example:
<Directory "/usr/local/apache/htdocs">
AllowOverride Options
</Directory>
'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
<IfModule mod_setenvif.c>
<IfDefine SSL>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</IfDefine>
</IfModule>
# Fix certain PHP values
#<IfModule mod_php4.c>
# php_value session.use_trans_sid 0
# php_value register_globals 1
#</IfModule>
# to turn off register_globals
# php_value register_globals 0
/public_html/taogemst_myzencart/admin/includes/.htaccess
$Id: .htaccess 2996 2006-02-09 00:42:17Z drbyte $
This is used with Apache WebServers
The following blocks direct HTTP requests in this directory recursively
This does not affect PHP include/require functions
<Files *.php>
Order Deny,Allow
Deny from all
Allow from localhost
</Files>
/public_html/taogemst_myzencart/download/.htaccess
#prevent directory browsing -- for security
IndexIgnore /
AuthType Basic
AuthName "No access"
AuthUserFile .htnopasswd
AuthGroupFile /dev/null
Require valid-user