当前位置:网站首页>About the apache .htaccess file of tp
About the apache .htaccess file of tp
2022-08-02 03:53:00 【auspi12341】
In order to hide index.php in the url, you need to write RewriteRule
View the Server API printed by phpinfo(): Apache 2.0 Handler
View the Server API printed by phpinfo(): CGI/FastCGI
====================================================================
Default:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
=====================================================================
If it is Server API: CGI/FastCGI needs to be modified as:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond%{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
=====================================================================
If the Apache configuration file uses Alias mapping to access the directory
Alias /sports "D:/WorkSpace/Sports/public/"
Need to add Rewritebase /sports
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
Rewritebase /sports
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
边栏推荐
猜你喜欢
随机推荐
easyswoole 使用redis执行geoRadiusByMember Count无效修复
Query the indexes of all tables in the database and parse them into sql
debian 10 nat and routing forwarding
每日五道面试题总结 22/7/21
uniapp | 开发中遇到的兼容性问题(待续)
使用PHPMailer发送邮件
Advanced gradient of skeleton effect, suitable for waiting for pictures
--fs module--
ES6三点运算符、数组方法、字符串扩展方法
js作用域与闭包
clock tick marks
AES加密的各种蛋疼方式方式
如何计算地球上两点的距离(附公式推导)
数组的高级操作
DOM manipulation---magnifying glass case
1.初识PHP
项目中遇到的问题
解决MySQL创建子视图并查看的时候,字符集报错问题
1.6一些今日学习
微信小程序云开发如何将页面生成为pdf?