在URL重定向后,url在单击链接时不显示新地址

时间:2011-04-13 20:50:54

标签: .htaccess redirect joomla content-management-system url-rewriting

我有这个网站http://www.manndirectory.com,它是一个安装了SOBI2商业索引的Joomla CMS。我已经设置好了,根据他们的建筑位置,他们可以是不同的条目。 Joomla和SOBI2都启用了SEF。

我设置了301重定向,这样如果你输入www(点)manndirectory(点)com / 1407或www(点)manndirectory(点)com / 1500,它会带你到一个主页,其中包含那栋楼。

工作正常,但点击任何链接都不会更改地址栏中的网址。

这是htaccess文件中的代码 重定向301 / fashion_directory / 1407 http://www(dot)manndirectory(dot)com/index.php?building=1407 重定向301 / fashion_directory / 1500 http://www(dot)manndirectory(dot)com/index.php?building=1500

我宁愿使用URL重写而不是重定向。这只是一个临时解决方案。

我想要这个网址: http://www(dot)manndirectory(dot)com/index.php?building=1407

显示为: http://www(dot)manndirectory(dot)com/1407

我希望在1407之后追加所有子页面(例如http://www(dot)manndirectory(dot)com/1407/a/http://www(dot)manndirectory(dot)com/1407/activewear/vestiti-fini.html

任何人都可以对此有所了解。我意识到这对于一个非常密集的问题是一个深刻的问题。但我有点失落。

以下是我使用的HTACCESS文件:

##
# @version $Id: htaccess.txt 14401 2010-01-26 14:10:00Z louis $
# @package Joomla
# @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
# Joomla! is Free Software
##


#####################################################
#  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

##  Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
#  mod_rewrite in use

RewriteEngine On
# RewriteRule ^/1407$ /tmp

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
## Deny access to extension xml files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension xml files
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

#  Uncomment following line if your webserver's URL
#  is not directly related to physical file paths.
#  Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section

Redirect 301 /fashion_directory/1407 http://www.manndirectory.com/index.php?building=1407

#RewriteRule index/building/(.*)/ index.php?building=$1
#RewriteRule index/building/(.*) index.php?building=$1  

1 个答案:

答案 0 :(得分:1)

如果您需要新网址,则必须从网站页面链接到这些新网址。

网址在用户点击的链接中定义。

Mod_rewrite无法更改网站页面上的链接。相反,它会在点击链接后对来自浏览器的URL请求做出反应。

您的.htaccess文件是旧版本。最近有很多变化。这些更改出现在文件的Joomal 1.5.23和1.6.2版本中。

相关问题