내가 404를 얻고 URL을 처리하지 않는 경우 - 페이지 정의 내 htaccess로 파일이 URI를 리디렉션해야합니다 동안 찾을 수 없음 :htaccess로 올바르게
:<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?page=$1
RewriteRule ^profile/([0-9]+)/([A-Za-z0-9-]+)/?$ index.php?page=profile&id=$1
RewriteRule ^m_profile/([0-9]+)/([A-Za-z0-9-]+)/?$ mobile.php?page=profile&i$
RewriteRule ^chat/([0-9]+)/([A-Za-z0-9-]+)/?$ index.php?page=chat&id=$1
</IfModule>
예를 들어, 모든 URL 아래 죽은 링크입니다
http://www.example.com/meet
http://www.example.com/profile/1/Admin
누구든지 무슨 문제인지 알고 계십니까?
[.htaccess가 URL을 처리하지 않음] (https://stackoverflow.com/questions/47810871/htaccess-is-not-handling-url) – SMX42