ubuntu隐藏index.php的方法
程序员文章站
2022-04-02 16:05:20
...
ubuntu隐藏index.php的方法
ubuntu-apache下隐藏thinkphp入口文件index.php
按照thinkphp手册中来讲,apache服务器下,隐藏thinkphp入口文件有3步:
1.httpd.conf配置文件中加载了mod_rewrite.so模块
2.AllowOverride None 将None改为 All
3.把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下:
mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
ps:前两项在apache配置文件中
但在实际操作中发现几个问题:
1.在ubuntu下没有httpd.conf配置文件,只有apache2.conf,据说前者是用户自定义配置文件
2.apache2.conf中没有mod_rewrite.so(windows中把配置文件中包含这行的代码注释去掉即可完成配置)
解决办法:
a.终端:a2enmod rewrite ,完成后重启服务器
b.做启动链接(下次启动自动加载)(我在执行时提醒说已经存在了):
ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load
重启服务器
更多相关知识,请关注 PHP中文网!!
以上就是ubuntu隐藏index.php的方法的详细内容,更多请关注其它相关文章!
上一篇: PHP中json的使用技巧及实例
推荐阅读
-
Ubuntu服务器下搭建php运行环境的方法
-
Ubuntu14.04服务器环境下配置PHP7.0+Apache2+Mysql5.7的方法
-
本地Windows远程桌面连接阿里云Ubuntu 16.04服务器的操作方法
-
Android EditText长按菜单中分享功能的隐藏方法
-
Ubuntu 16.04安装Apache Tomcat的方法
-
在ubuntu中部署samba服务器的方法
-
ubuntu下安装Python多版本的方法及注意事项
-
win10如何添加隐藏wifi?win10添加隐藏wifi的方法
-
jQuery使用hide方法隐藏页面上指定元素的方法教程
-
Ubuntu中添加应用程序快速启动器的方法