【问题标题】:After URL redirection, url not displaying new address when clicking on linksURL 重定向后,单击链接时 url 不显示新地址
【发布时间】:2026-02-20 23:05:02
【问题描述】:

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

我设置了 301 重定向,因此,如果您输入 www(dot)manndirectory(dot)com/1407 或 www(dot)manndirectory(dot)com/1500,它将带您到一个主页,其中包含以下信息那栋楼。

这很好,但点击任何链接都不会更改地址栏中的 URL。

这是 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  

【问题讨论】:

  • 我建议从上面的文件中去掉注释代码,只保留上面的相关行,这样你就有更好的机会得到答案。

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


【解决方案1】:

如果您想要新的 URL,您必须从您网站的页面链接到这些新的 URL。

URL 是在用户点击的链接中定义的。

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

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

【讨论】:

    最近更新 更多