一、Apache
RewriteEngine On # 下面是在根目录,文件夹要修改路径,如 /typecho/,同时 RewriteRule 也要跟着变 RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L]
外加一个顶级域名和二级域名的跳转
# 带 www 的跳转到不带的 RewriteCond %{HTTP_HOST} ^www.weidao.net RewriteRule (.*) http://weidao.net/$1 [R=301,L] # 不带 www 的跳转到带的 RewriteCond %{HTTP_HOST} ^weidao.net RewriteRule (.*) http://www.weidao.net/$1 [R=301,L]
注:最新的 SVN 在后台启用重写功能的时候能自动生成 .htaccess 文件。
二、Nginx
location / { index index.html index.php; if (-f $request_filename/index.html) { rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php) { rewrite (.*) $1/index.php; } if (!-f $request_filename) { rewrite (.*) /index.php; } }
三、SEA
name: typecho version: 1 #cron: # - description: cron test # url: index.php # schedule: every 43 mins # timezone: Beijing handle: - rewrite: if(!is_dir() && !is_file()) goto "index.php?%{QUERY_STRING}"
四、IIS 下的 httpd.ini
不完美,可参考修改。
[ISAPI_Rewrite] # 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] # 内容页 RewriteRule /(.*).html /index.php/$1.html [L] # 评论 RewriteRule /(.*)/comment /index.php/$1/comment [L] # 分类页 RewriteRule /category/(.*) /index.php/category/$1 [L] # 分页 RewriteRule /page/(.*) /index.php/page/$1 [L] # 搜索页 RewriteRule /search/(.*) /index.php/search/$1 [L] # feed RewriteRule /feed/(.*) /index.php/feed/$1 [L] # 日期归档 RewriteRule /2(.*) /index.php/2$1 [L] # 上传图片等 RewriteRule /action(.*) /index.php/action$1 [L]
另一个:
[ISAPI_Rewrite] RewriteRule ^/admin(.*) /admin/$1 [L] RewriteRule ^(.*)(html|htm)$ /index\.php/$1$2 [L] RewriteRule ^([^.]+)$ /index\.php/$1 [L]
第一条 重定向后台地址
第二条 将带html htm 后缀的重写
第三条 排除带"."的 其余的全部重写
而下面这个好像是WP的,只做参考用
[ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files # from accessing through HTTP # Rules to ensure that normal content gets through 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]
注:记得到后台永久链接设置里,启用地址重写功能。
222
2条
http://t.160.me/