【问题标题】:urls redirection from domain to sub domainurl 从域重定向到子域
【发布时间】:2012-05-25 21:32:15
【问题描述】:

我重新安装了我的服务器,不想丢失我的旧内容。 我现在正在使用 joomla 2.5,而我的旧安装是在 joomla 1.5 上。 我的问题是:如何重定向这些网址:

1)www.domain.com/TableView/a/ 到 www.domain.com/archives/index.php/TableView/a/ 2)www.domain.com/Page-3.html 到 www.domain.com/archives/index.php/Page-3.html

感谢您的帮助!

【问题讨论】:

    标签: .htaccess url redirect subdomain rewrite


    【解决方案1】:
    RewriteEngine On
    RewriteBase /
    RewriteRule ^(TableView/a/)$ /archives/index.php/$1 [R=302,L]
    RewriteRule ^(Page-3.html)$ /archives/index.php/$1 [R=302,L]
    

    【讨论】:

      猜你喜欢
      • 2012-01-19
      • 2013-09-26
      • 2014-05-10
      • 1970-01-01
      • 1970-01-01
      • 2011-04-29
      • 2010-11-22
      • 2023-03-17
      • 2016-03-20
      相关资源
      最近更新 更多