2015-06-16 13:53:57 4150次浏览 1条回答 0 悬赏 0 金钱
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php

Options -Indexes

上面的规则转换为nginx。如果写
在线转换的测试都不行。求大侠帮忙

  • 回答于 2015-06-16 14:18 举报
    location / {
        if (!-e $request_filename){
            rewrite ^/(.*) /index.php last;
        }
    }
    
    1 条回复
    回复于 2015-07-10 14:52 回复

    我试了,当我点击其他页面时候,反馈我:No input file specified.

您需要登录后才可以回答。登录 | 立即注册
hoboking
实习生

hoboking

注册时间:2015-06-16
最后登录:2015-06-23
在线时长:0小时27分
  • 粉丝0
  • 金钱0
  • 威望0
  • 积分0

热门问题