Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我重新安装了我的服务器,不想丢失我的旧内容。我现在正在使用 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
感谢您的帮助!
RewriteEngine On RewriteBase / RewriteRule ^(TableView/a/)$ /archives/index.php/$1 [R=302,L] RewriteRule ^(Page-3.html)$ /archives/index.php/$1 [R=302,L]