duanputian5341 2017-04-05 22:31
浏览 53
已采纳

.htaccess - 删除www,强制https,删除php并删除尾部斜杠

I am trying to archieve the following with least amount of redirects;

  • Remove WWW
  • Force HTTPS
  • Remove php extension
  • Remove end trailing slash

What i have so far and is working:

RewriteEngine On

# REMOVE WWW
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

# FORCE HTTPS
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# REMOVE TRAILING SLASH
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]

# REMOVE PHP EXTENSION
RewriteRule ^(.+)\.php$ /$1 [NC,L,R=301]
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+)/?$ /$1.php [END]

Current behaviour:

http://www.example.com/functions.php -> https://example.com/functions

(works with 4 redirects)

OR

http://www.example.com/functions/ -> https://example.com/functions

(works with 4 redirects)

Does anyone have any suggestions how to make this work with fewest possible redirects?

  • 写回答

1条回答 默认 最新

  • dongshun7312 2017-04-05 23:02
    关注

    It doesn't hurt to just always rewrite to https and lose the www in one step. Trailing slash is unchanged, but lost a line on removing php-extenstion by inverting the Cond.

    # REMOVE WWW & FORCE HTTPS
    RewriteCond %{HTTP_HOST} ^www\.(.*)$ [OR]
    RewriteCond %{https} off
    RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
    
    # REMOVE TRAILING SLASH
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ /$1 [L,R=301] 
    
    # REMOVE PHP EXTENSION if there's no file with this name
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.+)\.php$ /$1 [NC,L,R=301]
    

    If you also need handling for files that were requested as file/ without .php, you should stay with your code for the final part:

    RewriteRule ^(.+)\.php$ /$1 [NC,L,R=301]
    RewriteCond %{REQUEST_FILENAME}.php -f
    RewriteRule ^(.+)/?$ /$1.php [END]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测