提问人:Gabriel Philips 提问时间:7/28/2023 更新时间:7/28/2023 访问量:21
使用 Apache Mod Rewrite 重定向
Redirecting using Apache Mod Rewrite
问:
我编辑了文件 /etc/apache2/sites-enabled/000-default.conf
并添加了
<Directory "/var/www/html">
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ \ [L,QSA]
</Directory>
我正在使用托管 wifi 的本地服务器 我想将所有请求重定向到 /var/www/html/index.html 网页
它像 example.com 一样重定向一些请求,但问题是:它不会重定向 example.com/something 也不会重定向 https://example.com
答: 暂无答案
评论