当前位置:网站首页>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]
边栏推荐
猜你喜欢
随机推荐
Baidu positioning js API
1.6一些今日学习
Circular linked list---------Joseph problem
js 中this指向
IO streams, byte stream and byte stream buffer
解决MySQL创建子视图并查看的时候,字符集报错问题
1.13 学习JS
微信小程序全局组件的定义
面试总结 22/7/22 面试中的重点
npm and package.json
IO流、字节流、字节缓冲流
AES加密的各种蛋疼方式方式
__dirname
面试总结 22/7/25 面试中的重点
[trendsoft/capital]金额转中文大写库
display,visibility,opacity
环形链表---------约瑟夫问题
PHP有哪些框架?
这些JS题面试时一定要答对!
我的小笔记 =》其他东东
![[sebastian/diff]一个比较两段文本的历史变化扩展库](/img/c7/ea79db7a5003523ece7cf4f39e4987.png)


![微信小程序开发视频加载:[渲染层网络层错误] Failed to load media](/img/24/e12a1312aee28a43428b2ae0bfbe00.png)





