欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

htaccess隐藏index.php,301重定向等等..

程序员文章站 2024-03-26 13:50:59
...

官方的.htaccess文件是这样的,但是我用这个访问,不加index.php就会报错:No input file specified.

htaccess隐藏index.php,301重定向等等..

后面网上百度了一下,可以用的写法,这下子,就可以访问了,很舒服


<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