2011-04-18 156 views
0

我需要一個簡單的重定向我的網頁。簡單的網址重寫需要

我需要以下改寫:

 
http://abc.de/application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/268/web/Aktivreisen-Wanderreisen.htm http://abc.de/aktivreisen-schottland.html 
http://abc.de/application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/270/web/Busrundreisen.htm http://abc.de/busrundreisen-schottland.html 
http://abc.de/application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1223/web/Ferienhotels.htm http://abc.de/hotels-schottland.html 
http://abc.de/application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1217/web/Auto-Rundreisen.htm http://abc.de/auto-rundreisen-schottland.html 
http://abc.de/application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1222/web/Stadthotels.htm http://abc.de/hotels-schottland.html 
http://abc.de/application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1212/web/Unterkunftsschecks.htm http://abc.de/unterkunftsschecks-schottland.html 

的問題是,/application/index.cfm不存在,服務器將顯示未發現無論我如何配置http.conf 404或.htaccess文件。

我應該在我的.htaccess文件中放什麼?

回答

0

根據上面的例子,你需要單獨重寫每一個。原因是在.htm頁面和您正在改寫的頁面之間沒有可重複的映射模式:

 
Rewrite Engine on 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 

RewriteRule application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/268/web/Aktivreisen-Wanderreisen.htm http://abc.de/aktivreisen-schottland.html [NC,R=301] 
RewriteRule application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/270/web/Busrundreisen.htm http://abc.de/busrundreisen-schottland.html [NC,R=301] 
RewriteRule application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1223/web/Ferienhotels.htm http://abc.de/hotels-schottland.html [NC,R=301] 
RewriteRule application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1217/web/Auto-Rundreisen.htm http://abc.de/auto-rundreisen-schottland.html [NC,R=301] 
RewriteRule application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1222/web/Stadthotels.htm http://abc.de/hotels-schottland.html [NC,R=301] 
RewriteRule application/index.cfm/fuseaction/home.uebersicht/idLand/44/idReiseart/1212/web/Unterkunftsschecks.htm http://abc.de/unterkunftsschecks-schottland.html [NC,R=301]