我想重写一个URL,即redirect.php到test258。 我正在使用以下命令
RewriteRule ^test258 /redirect.php [P,L]
工作正常,当我拍摄http://example.com/test258时,我会在http://example.com/redirect.php文件上获取内容。
但是当我拿https://example.com/test258时,它不会显示任何内容,它会显示404错误页面。
我的意图是当我拍摄https://example.com/test258时,它会显示https://example.com/redirect.php个文件内容
我正在使用Linux(CentOS) 我在网站上启用了SSL
我被称为similer问题here但是我看不到正确的ssl.conf文件和内容,这里没有文件(默认情况下为/etc/httpd/conf.d/ssl.conf)
DocumentRoot /var/www/html
<Directory /var/www/html>
AllowOverride FileInfo
</Directory>
我更改了/usr/local/apache/conf/httpd.conf,但没有任何反应。