htaccess隐藏index.php,301重定向等等..
程序员文章站
2024-03-26 13:50:59
...
官方的.htaccess文件是这样的,但是我用这个访问,不加index.php就会报错:No input file specified.
后面网上百度了一下,可以用的写法,这下子,就可以访问了,很舒服
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
#/$1 [QSA,PT,L]
</IfModule>
301重定向https
RewriteBase /
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]
转载于:https://my.oschina.net/laobia/blog/3050206
推荐阅读
-
htaccess隐藏index.php,301重定向等等..
-
ThinkPHP 利用.htaccess文件的 Rewrite 规则隐藏URL中的 index.php 博客分类: PHP thinkphphtaccessrewriteindex.phpapache
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
修改.htaccess实现301域名重定向示例分享
-
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
-
修改.htaccess实现301域名重定向示例分享
-
二级目录下htaccess 301 重定向的配置代码
-
CI框架 .htaccess 隐藏url中index.php的解决
-
配置htaccess文件隐藏index.php