thinkphp5 Apache / IIs环境下 URL重写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5 Apache / IIs环境下 URL重写相关的知识,希望对你有一定的参考价值。

好像thinkphp5新版本 隐藏index.php隐藏index.php 都写好了
public 隐藏
独立主机可以直接把根目录指向public下
虚拟主机可以把public下的index.php放到根目录

public下原有index.php
// 定义应用目录
define(‘APP_PATH‘, __DIR__ . ‘/../application/‘);
// 加载框架引导文件
require __DIR__ . ‘/../thinkphp/start.php‘;
放到根目录下的index.php
// 定义应用目录
define(‘APP_PATH‘, __DIR__ . ‘/application/‘);
// 加载框架引导文件
require __DIR__ . ‘/thinkphp/start.php‘;

Apache下隐藏index.php
tp5好像都给写好了.htaccess文件 index.php都给隐藏掉了
如果是index.php移到根目录了只需要把.htaccess文件放到根目录下

其中代码
<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

iis下隐藏
有的主机后台有URL Rewrite直接写规则就可以了

没有直接在根目录创建web.config

其中代码
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="WPurls" enabled="true" stopProcessing="true">
                    <match url=".*" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php/{R:0}" />
                </rule>
            </rules>
        </rewrite>

        <defaultDocument>
            <files>
                <clear />
                <add value="index.php" />
                <add value="index.html" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

以上是关于thinkphp5 Apache / IIs环境下 URL重写的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp5 在IIS8.5下隐藏index.php

PHP在Apache/Nginx/IIS环境下的伪静态配置

thinkphp5设置项目为restful风格

Web服务器之iis,apache,tomcat三者之间的比较

nginx+thinkphp5配置

thinkphp5 部署到iis服务器url重写