phpstudy的apache集成环境,开启URL美化不能访问,关闭美化正常访问,还望小伙伴指点指点 [ 2.0 版本 ]
开启美化:
关闭美化url:
相关代码:
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [],
],
apache相关配置:
已加载LoadModule rewrite_module modules/mod_rewrite.so模块
vhosts相关配置:
<Directory "D:\WWW\demo\backend\web">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
最佳答案
-
web目录加个文件.htaccess
代码:Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
RewriteRule \.svn\/ /404.html
RewriteRule \.git\/ /404.html
共 1 条回复
其他 0 个回答
没有找到数据。
三亩地
注册时间:2017-06-08
最后登录:2018-01-25
在线时长:17小时5分
最后登录:2018-01-25
在线时长:17小时5分
- 粉丝3
- 金钱320
- 威望0
- 积分490