비 "Wordpress"페이지 / 코드에서 404 오류가 발생합니다
3 대답
- 투표
-
- 2011-05-06
문제는 WordPress 재 작성 시스템이 작동하는 방식 때문입니다.WordPress .htaccess는 WordPress 루트 디렉토리의index.php 파일을 통해 모든 요청 (index.php를 제외하고 실제로 존재하지 않음)을 보냅니다.index.php 파일에 대한 요청이 있으면 루트 WordPressindex.php를 통해서도 전송됩니다.
간단한 해결책은/ericsinfo에있는index.php 파일의 이름을 default.php로 바꾸는 것입니다.호스팅 설정에 따라 그렇게하면 작동 할 수 있습니다.그렇지 않은 경우 www.domain.com/ericsinfo를 www.domain.com/ericsinfo/default.php
로 가리키는 .htaccess에 301 리디렉션을 추가 할 수 있습니다.Redirect 301 /ericsinfo http://domain.com/ericsinfo/default.php
.htaccess 파일은public_html 또는 루트 공개 웹 디렉토리에 있습니다.
The problem your having is because of the way the WordPress rewrite system works. The WordPress .htaccess sends all requests (that dont actually exist except index.php) through the index.php file in the WordPress root directory. If any request is made for a file named index.php it will also get sent through the root WordPress index.php.
A simple solution would be to rename the index.php file in /ericsinfo to default.php. Depending on your hosting setup it might work by just doing that. If it doesn't you can add a 301 redirect to your .htaccess that points www.domain.com/ericsinfo to www.domain.com/ericsinfo/default.php
Redirect 301 /ericsinfo http://domain.com/ericsinfo/default.php
The .htaccess file will be located in your public_html or root public web directory.
-
- 2011-05-07
wp-content/themes 폴더에 style.css가있는 테마로 만든 다음 테마를 활성화해야합니다.그렇지 않으면 워드 프레스에서 찾을 수 없습니다.
http://www.siteground.com/tutorials/wordpress/wordpress_create_theme.htm
you have to make it as a theme with a style.css in wp-content/themes folder then active the theme. Otherwise wordpress won't find it.
http://www.siteground.com/tutorials/wordpress/wordpress_create_theme.htm
-
- 2019-04-18
하위 디렉토리 htaccess 파일의 시작 부분에이 줄을 추가하십시오.
<인용구>ErrorDocument 401 기본값
Please add this line at begin of your sub-directory htaccess file.
ErrorDocument 401 default
-
답변을 ** [수정]하고 ** 설명을 추가하세요. ** 왜 ** 문제가 해결 될 수 있나요?Please **[edit] your answer**, and add an explanation: **why** could that solve the problem?
- 1
- 2019-04-18
- fuxia
당신이 나의 구원자가되기를 바랍니다. 포럼에는이 문제를 가진 많은 사람들이 있지만 명확한 대답은 없습니다. 내 곤경은 다음과 같습니다 .-
저는 새로운 호스팅에 새로운 Wordpress 사이트를 모았습니다. 나는 그것이 얼마나 시원한 지에 달을 넘었다. 그러나 이전 (Wordpress가 아닌) 호스팅에서는 메인에서 멀리 떨어진 경로의 폴더에 앉아있는 고객을위한 작은 주문 시스템이있었습니다. 자체index.php가 있으며 www.domain.com/ericsinfo
로 이동하여 연결할 수 있습니다.폴더를 새 호스팅으로 가져와 이전과 마찬가지로 루트에 배치했지만 www.domain.com/ericsinfo로 이동하면 Wordpress에서 404 오류가 발생합니다. www.domain.com/ericsinfo/index.php를 입력해도 Wordpress 404입니다.
.htaccess 파일을 편집해야한다고 읽었지만 제 템플릿에 파일이없는 것 같고 무언가를 깨뜨리지 않는 한 다른 사람들이 권장하는 코드를 사용하여 만들고 싶지 않습니다.
나는 Wordpress가 404 프로세스를 인수하는 것이 매우 멋지고 완전히 사라지는 것을 원하지 않는다는 것을 알 수 있습니다. 이전과 마찬가지로 주문 시스템을 사용하고 싶습니다.
당신의 도움에 영원히 감사하겠습니다!
매트