|
|
|
域名根目录下新建 .htaccess , 添加RewriteEngine on#不显示index.phpRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]#指定80端口域名 lam.xx8.top 跳转到 https://lam.xx8.topRewriteCond %{HTTP_HOST} ^lam.xx8\.top [NC]RewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://lam.xx8.top/$1 [R,L] |
|