如何将所有 *.html 页面重定向到 *.php 页面?

发布于 2024-12-17 08:48:43 字数 282 浏览 0 评论 0原文

我寻找这个问题的答案,因为这应该是一件相当常见的事情
并找到了一些,但所有这些都导致我出现内部服务器错误..:(
我需要将所有 html 页面重定向到 php 中的对应部分,

我知道有一个我可以使用的 rewriteRule,但似乎找不到语法。.

一个简单的解释:
我需要将我的所有 *.html 页面重定向到 *.php

我希望我能很好地解释它..希望得到您的帮助或有关此主题的一些资源的链接,在这些资源中我可以真正了解如何创建此重定向规则

I looked for the answer to this since it should be a rather common thing to do
and found some but the all lead me to an internal server error.. :(
i need to redirect all my html pages to their counter part in php

i know there is a rewriteRule i can use but cant seem to find the syntax..

a simple explenation:
i need to redirect all my *.html pages to *.php

I hope i explained it well.. would love your help or a link to some resources on this subject where i can really understand how to create this redirectRule

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

生死何惧 2024-12-24 08:48:44

您可以使用 RewriteRule

RewriteEngine on
RewriteRule ^/(.*)\.html$ $1.php [R]

如果出现内部服务器错误,请执行确保您已在 apache 中启用 mod_rewrite :

sudo a2enmod rewrite
sudo /etc/init.d/apache2 reload

You can use RewriteRule:

RewriteEngine on
RewriteRule ^/(.*)\.html$ $1.php [R]

If you get Internal Server Errors, make sure that you have enabled mod_rewrite in apache :

sudo a2enmod rewrite
sudo /etc/init.d/apache2 reload
牵你的手,一向走下去 2024-12-24 08:48:43

在站点的根文件夹中创建一个 .htaccess 并在其中放置以下规则:

RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)\.html$ $1.php [L,R]

如果您不希望地址栏反映更改,请将最后一行更改为

RewriteRule ^(.*)\.html$ $1.php [QSA,L]

Create a .htaccess in the root folder of your site and place the following rules in it:

RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)\.html$ $1.php [L,R]

If you don't want the address bar to reflect the change, then change that last line to

RewriteRule ^(.*)\.html$ $1.php [QSA,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文