我知道这是一个难题,但我不知道当我使用hxxp:// url [dot] tld / file.php访问它时,我的页面没有加载“.php”文件的原因。要查看内容,我必须通过hxxp:// url [dot] tld / file.php /访问它。我知道我可以从cpanel(重定向 - 部分)这样做,但我的提供商有一个定制的面板,我发现无处重定向选项。我尝试了一些来自互联网的代码,通过.htaccess将旧网址重定向到新网址,但重定向到hxxp:// url [dot] tld / file.php /////////////// //或类似的东西。
编辑:.htaccess内容现在
RewriteEngine on
RewriteCond %{HTTP_HOST} ^online\.my\-domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.online\.my\-domain\.com$
RewriteRule ^/?$ "http\:\/\/google\.com\/" [R=302,L]
//Rewrite to www
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} ^online.my-domain.com[nc]
RewriteRule ^(.*)$ http://www.online.my-domain.com/$1 [r=301,nc]
Redirect 301 /php-file-with-problems.php /php-file-with-problems.php/
我怎么说我被重定向到online.my-domain.com/php-file-with-problems.php //////////////
答案 0 :(得分:0)
重定向指令将多个斜杠添加到文件名中,并且您将获得重定向循环,要解决此问题,您将需要使用RedirectMatch
RedirectMatch 302 /phpfile$ /phpfile/
在测试之前清除浏览器缓存。