欢迎光临
我们一直在努力

使用.htaccess重定向、创建404等10个实例代码

建站超值云服务器,限时71元/月

使用apache、nginx等web服务器的朋友对.htaccess并不陌生,在非IIS环境下,.htaccess是一个非常重要的WEB设置工具,前不久烈火学院专门推出了.htaccess在线生成代码工具,希望对各位站长朋友有所帮助,但是仍有一些站长不是太懂,现在就给大家分享十个常见的.htaccess代码设置实例,可以省去大家很多时间。

[代码] 移除url中的www

RewriteEngine On
RewriteCond %{HTTP_HOST} !^your-site.com$ [NC]
RewriteRule ^(.*)$ http://your-site.com/$1 [L,R=301]

Source: http://css-tricks.com/snippets/htaccess/www-no-www/

[代码] 防止热链

RewriteEngine On
#Replace ?mysite\.com/ with your blog url
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mysite\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
#Replace /images/nohotlink.jpg with your "don't hotlink" image url
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpg [L]

[代码] 重定向所有的WordPress feeds 到 feedburner

RedirectMatch 301 /feed/(atom|rdf|rss|rss2)/?$ http://feedburner.com/yourfeed/
 RedirectMatch 301 /comments/feed/(atom|rdf|rss|rss2)/?$ http://feedburner.com/yourfeed/Source: http://www.wprecipes.com/how-to-redirect-wordpress-rss-feeds-to-feedburner-with-htaccess

[代码] 创建常规错误页面

ErrorDocument 400 /errors/badrequest.html
ErrorDocument 401 /errors/authreqd.html
ErrorDocument 403 /errors/forbid.html
ErrorDocument 404 /errors/notfound.html
ErrorDocument 500 /errors/serverr.html

Source: http://css-tricks.com/snippets/htaccess/custom-error-pages/

[代码] 强迫指定文件下载

ForceType application/octet-stream
  Header set Content-Disposition attachmentForceType application/octet-stream
  Header set Content-Disposition attachmentSource: http://www.givegoodweb.com/post/30/forcing-a-download-with-apache-and-htaccess

[代码] PHP 错误日志

# display no errs to user
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# log to file
php_flag log_errors on
php_value error_log /location/to/php_error.log

Source: http://css-tricks.com/snippets/htaccess/php-error-logging/

[代码] 从URL中移除文件拓展名,如.html

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
# Replace html with your file extension, eg: php, htm, asp

Source: http://eisabainyo.net/weblog/2007/08/19/removing-file-extension-via-htaccess

[代码] 防止自动目录列表

Options -Indexes

[代码] 压缩静态数据

AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript

[代码] 强制指定特定的编码

<FilesMatch "\.(htm|html|css|js)___FCKpd___9quot;>AddDefaultCharset UTF-8Source: http://www.askapache.com/htaccess/setting-charset-in-htaccess.html
赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 使用.htaccess重定向、创建404等10个实例代码
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址