windows 서버 에 301, 의사 정적 (wordpress) 을 설정 합 니 다.

1419 단어 wordpress
httpd. ini 파일 을 새로 만 들 고 코드 를 삽입 합 니 다.
[ISAPI_Rewrite]
RewriteCond Host: ^wuchao\.cc$
RewriteRule (.*) http\://www\.wuchao\.cc$1 [R,I,L]

# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
#     tag   
RewriteRule /tag/(.*) /index\.php\?tag=$1
# sitemapxml
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /favicon.ico /favicon.ico [L]
# For file-based wordpress content (i.e. theme), admin, etc. 
RewriteRule /wp-(.*) /wp-$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]
[ISAPI_Rewrite]

좋은 웹페이지 즐겨찾기