2012-07-10 2 views
0

젠 카트 플러그인을 설치했습니다 "Ceon's SEO URL".Ceon SEO UR1이 장바구니에서 오류 페이지를 찾을 수 없습니다.

관리자 패널에는 설치 오류가 없지만 제품 이름을 클릭하면 404 오류가 표시됩니다.

내가 ceon의 플러그인의 설치 단계를 수행하려고하지만 난 그렇게 저를 도와주세요 문제

8.Add the Rewrite Rule to the Webserver (Apache/IIS etc.) 

에 직면하고있다.

나는이 경로 htdocs\zencarttest\zencart에이 htaccess로 파일을 가지고 folow 나의 htaccess로는

## BEGIN CEON URI MAPPING REWRITE RULE 

RewriteEngine On 

# ONLY rewrite URIs beginning with /zencarttest/zencart/ 
RewriteCond %{REQUEST_URI} ^/zencarttest/zencart/ [NC] 

# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx]) 
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,5}$ [OR] 
RewriteCond %{REQUEST_URI} \.(html)$ [NC] 




# Don't rewrite any URIs for some specific file format extensions, 
# which are not covered by main file extension condition above 
# Uncomment the following line to apply this condition! (Remove the # at the start of the next line) 
RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC] 

# Don't rewrite admin directory 
RewriteCond %{REQUEST_URI} !^/zencarttest/zencart/admin_test [NC] 

# Don't rewrite editors directory 
RewriteCond %{REQUEST_URI} !^/zencarttest/zencart/editors/ [NC] 

# Handle all other URIs using Zen Cart (its index.php) 
RewriteRule .* /zencarttest/zencart/index.php [QSA,L] 

## END CEON URI MAPPING REWRITE RULE 
내가 실수를 않았다

?

도와주세요! 미리 감사드립니다 ...

답변

1

.htaccess 파일을 직접 작성 했습니까? 자동 생성 .htaccess 파일을 사용 했습니까? 관리자 -> 모듈 -> Ceon URI 구성으로 이동하여 설치 확인을 선택하고 설치 확인 링크를 클릭하면 저장소의 루트에 htaccess \ zencarttest \ zencart). 당신은 여전히 ​​404을 받고있어, 여기에 슬래시를 제거하려고 :

# Handle all other URIs using Zen Cart (its index.php) 
RewriteRule .* /zencarttest/zencart/index.php [QSA,L] 

을 그래서 당신이 얻을 :

또한
# Handle all other URIs using Zen Cart (its index.php) 
RewriteRule .* zencarttest/zencart/index.php [QSA,L] 

, 서버가 설치된 mod_rewrite를했다 있는지 확인합니다 (I didn 히 그 일부를 본 적이 그것을 가지고있다).

+0

'RewriteRule. * zencarttest/zencart/index.php [QSA, L]'을 입력하면 색인 페이지에 404 오류가 발생하고 색인 페이지가 '/'로 표시되고 제품이 완벽하게 표시되지만 우리와 같은 다른 링크를 클릭하십시오, 그 날 404 오류 – Jalpesh

+0

hello @ user1078494 줄 것이다 시간에 요법을 참조하십시오. 내가 어떻게 404 페이지의 제품 페이지를 제공하기 때문에 "문의, 사이트 맵"을 의미하는 오래된 페이지의 URL을 설정할 수 있습니다 그리고 "EZ 페이지"에서 새롭게 페이지를 만들면 잘 작동합니다. 그래서 난 이미 기존 페이지의 URL을 변경하려면 귀하의 도움이 필요합니다. 제발 도와주세요 – Jalpesh

+1

당신은 공식 포럼에 대한 자세한 답변을 얻을거야, 그게 확실합니다. Conor (모듈 작성자)가 있으며 지원을 제공합니다. :) 어쨌든, 그것을하는 방법을 설명하는 두 번째 게시물을 읽으십시오 [link] http://www.zen-cart.com/showthread.php?184548-Ceon-URI-Mapping-v4-x [/ link] - 즉, phpmyadmin을 사용하여 추가해야합니다. 다른 쉬운 방법은 없습니다. 글쎄요, 실제로, 당신은 그의 URI 매핑 관리자를 구입할 수 있습니다. 그리고 나서 당신은 관리자로부터 완전한 통제권을가집니다. 나는 그것을 구입했으며 실제로 가치가 있습니다. 그의 사이트를 확인하십시오 : [link] http://ceon.net/software/business/zen-cart/uri-mappings-manager [/ link] – user1078494

관련 문제