ThinkPHPURL_MODEL为2正确使用

来源:互联网 发布:制流程图软件 编辑:程序博客网 时间:2024/05/22 17:57

1配置apche虚拟机

2修改D:\myenv\Apache2.2\conf\extra\httpd-vhosts.conf文件,在<VirtualHost>中添加 <Directory>如

<VirtualHost *:8080>    ServerAdmin webmaster@dummy-host.lhw    DocumentRoot "D:/myenv/Apache2.2/htdocs/umlxe_manager/"    ServerName ummanager.com.cn    ServerAlias www.ummanager.com.cn    ErrorLog "logs/dummy-host.lhw-error.log"    CustomLog "logs/dummy-host.lhw-access.log" common    <Directory "D:/myenv/Apache2.2/htdocs/umlxe_manager/">    AllowOverride All    Options Indexes Includes FollowSymLinks    #Options FollowSymLinks    Order allow,deny    Allow from all    DirectoryIndex index.html index.php    </Directory></VirtualHost>

3新建.htaccess文件,内容如下

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

0 0
原创粉丝点击