PHP 애플리케이션에서 URL 재작성을 구현하려면 mod_rewrite 및 Kohana 프레임워크를 활용할 수 있습니다.
1단계: mod_rewrite 활성화
다음을 확인하세요. mod_rewrite 모듈이 웹 서버에서 활성화되었습니다. 일반적으로 이 작업은 웹 디렉터리의 .htaccess 파일을 편집하여 수행할 수 있습니다.
2단계: Kohana용 .htaccess 파일 생성
.htaccess 파일에 다음 코드를 추가합니다. Kohana 설치 디렉터리:
# Turn on URL rewriting RewriteEngine On # Installation directory RewriteBase /rootDir/ # Protect application and system files RewriteRule ^(application|modules|system) - [F,L] # Allow existing files to be displayed RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Rewrite remaining URLs to index.php RewriteRule .* index.php/<pre class="brush:php;toolbar:false"># Redirect play/google-io-2009-wave-intro RewriteRule ^videos/play/([a-zA-Z0-9-]+)$ /videos/play.php?title= [R] # Redirect play/203/google-io-2009-wave-intro RewriteRule ^videos/play/([0-9]+)/([a-zA-Z0-9-]+)$ /videos/play.php?id= [R]
3단계: 리디렉션 URL
지정된 URL을 리디렉션하려면 .htaccess 파일에 다음 규칙을 추가하세요.
SEO 친화적인 URL 선택
SEO와 관련하여, 두 번째 URL 형식인 'http://example.com/videos/play/203/google-io-2009-wave-intro'는 일반적으로 숫자 ID를 사용하므로 Google에서 더 많은 정보를 제공한다고 간주하므로 선호됩니다. 또한 번호가 매겨진 영구 링크를 허용하여 연대순 아카이브 생성을 용이하게 합니다.
위 내용은 mod_rewrite 및 Kohana를 사용하여 PHP에서 URL 재작성을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!