dongmei9203 2014-05-30 15:43
浏览 41
已采纳

htaccess重写规则相同的域名

I have a url rewrite issue on the .htaccess file. There are 2 rules on the file:

rule 1 // When user open "example.com/test.php" on a browser then user will be redirected to "example.com/test".

htaccess rule: RewriteRule ^test.php(.*)$ http://example.com/test/$1 [r=301,nc]

rule 2 // When user will open "example.com/test" we will retrieve the content from "example.com/test.php".

htaccess rule: RewriteRule ^test/ test.php [NC]

Right now those rules are not working, maybe there is a conflict somewhere. What rewrite rules i should use for the above conditions?

  • 写回答

1条回答 默认 最新

  • douwei7203 2014-05-31 00:16
    关注

    The two rules conflict with one an other. One writes test.php to test and the other writes test to test.php, which is likely to leave you in an infinite loop, either within the rewrite engine or between the browser and server depending on how you implement the rewrite.

    To solve this I've used a condition to check the requested URI rather than the URI as its currently rewritten.

    Try this:

    RewriteRule ^test/$ test.php [NC]
    
    RewriteCond %{THE_REQUEST} ^[A-Z]+\ (/[^\ ]*)\.php[?\ ]
    RewriteRule ^test\.php(.*)$ http://example.com/test/$1 [R=301,NC]
    

    Couple of things to note that might also be factors:

    1. You hadn't escaped the dot in test.php in your first rewrite
    2. The Apache MultiViews directive can get in the way and do some rewriting before you get your hands on the on the URI in .htaccess. If you have file test.php, but a request is just made to http://example.com/test, then your htaccess will be working with test.php, not just test as you might expect.
    3. Browsers cache redirects which can make it difficult to diagnose problems
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源