2011-04-18 3 views
0

내 페이지에는 간단한 리디렉션이 필요합니다.간단한 URL 재 작성이 필요합니다.

 
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]