Coopco, on Nov 11 2008, 12:51 PM, said:
RewriteBase /directorynameabovecatalog/catalog/
That does the trick... it works now =P
Posted 11 November 2008, 13:14
Posted 24 November 2008, 20:12
Edited by edmond1815, 24 November 2008, 20:12.
Posted 20 December 2008, 09:24
Posted 20 December 2008, 19:53
Edited by Hunnenkoenig, 20 December 2008, 19:53.
Posted 20 December 2008, 20:14
Posted 25 December 2008, 18:45
Posted 25 December 2008, 20:24
Posted 04 January 2009, 03:57
Babygurgles, on Dec 19 2007, 11:24 AM, said:
if ((@strpos($parts[count($parts) - 2], $type)) !== FALSE) //make sure it is the correct type for this link
{
// Commented out to bypass validation when sort= exists in the querystring
// if ((@strpos($parts[count($parts) - 2], $type)) !== FALSE) //make sure it is the correct type for this link
// {
// HACK - replaces above code
if ( ((@strpos($parts[count($parts) - 2], $type)) !== FALSE) && (($sort_exists = strpos($origUrl, "sort=") == FALSE)) ) //make sure it is the correct type for this link
{
// END HACKPosted 08 March 2009, 03:07
Posted 11 March 2009, 18:22
Posted 17 July 2009, 15:36
Edited by g7star, 17 July 2009, 15:37.
Posted 30 August 2009, 22:56
Posted 31 August 2009, 00:54
Posted 31 August 2009, 13:32
smacsloo, on Aug 31 2009, 12:56 AM, said:
Posted 03 November 2009, 19:33
# $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:
#
# <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
# (commented out by default to prevent errors occuring on certain
# servers)
#<IfModule mod_php4.c>
# php_value session.use_trans_sid 0
# php_value register_globals 1
#</IfModule>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /prueba/
RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING}
RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING}
Edited by infowind, 03 November 2009, 19:35.
Posted 30 August 2011, 10:52