您的位置:首页 > 编程语言 > PHP开发

PHP 路由配置

2016-05-06 22:41 465 查看

一、Apache 的路由配置

1、Apache
配置文件httpd.conf
修改目录重写
“AllowOverrideAll”,开启 Apache
模块rewrite_module(mod_rewrite.so)
2、Apache
虚拟主机Vhost开启,即开启 Apache
模块 alias_module(mod_vhost_alias.so),配置 httpd-vhosts.conf

系统盘/Windows/System32/drivers/etc
下的 hosts文件添加主机头
在 Apache/conf/extra
下修改 httpd-vhosts.conf
文件
<VirtualHost*:80>
    ServerAdmin 1101202419@qq.com
    DocumentRoot"C:\inetpub\wwwroot\phpweb"
    ServerName
hostname
    ErrorLog "logs/hostname-error.log"
    CustomLog "logs/hostname-access.log" common
</VirtualHost>

 
3、确保URL_MODEL设置为2(ThinkPHP的配置)
4、把.htaccess文件放到入口文件的同级目录下,内容如下
<IfModulemod_rewrite.c>
RewriteEngineon
RewriteCond%{REQUEST_FILENAME} !-d
RewriteCond%{REQUEST_FILENAME} !-f
RewriteRule^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
 

二、IIS 路由配置

1、下载 URL Rewrite Module(64位版本为 rewrite_2.0_rtw_x64.msi ),安装应用程序即可支持 PHP 路由重写;

2、应用程序配置web.config,内容如下

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

  <system.webServer>

   <rewrite>

   <rules>

       <rule name="ThinkPHP" stopProcessing="true">

         <match url="^(.*)$" />

         <conditions logicalGrouping="MatchAll">

         <add input="{HTTP_HOST}" pattern="^(.*)$" />

         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />

         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />

       </conditions>

       <action type="Rewrite" url="index.php/{R:1}" />

       </rule>

     </rules>

   </rewrite>

  </system.webServer>

</configuration>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  路由配置 PHP IIS apache