ThinkPHPURL_MODEL为2正确使用
1配置apche虚拟机
2修改D:myenvApache2.2confextrahttpd-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、httpd.conf配置文件中加载了mod_rewrite.so模块
4、AllowOverride None 讲None改为 All
5、新建.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
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。