如何为不同的 url 编写以下 htaccess 重写规则

发布于 2024-11-04 19:48:02 字数 827 浏览 0 评论 0原文

我正在开发一个使用 PHP 创建的网站。

开发环境是Windows(使用xampp)

网站的页面根据我们作为url变量传递给index.php文件的“page”变量的值来显示。

http://example.com/index.php?page=xyz

上面的 url 指向 xyz.php 文件

周围有50页(以后可以增加)。

我希望我的网址像这样

http://example.com/xyz

为了使其工作,我编写了以下 .htaccess 规则 .htaccess 文件(在项目的根文件夹中)

RewriteRule ^([^/]*)$ /index.php?page=$1 [L]

但它根本不起作用。

另一个网址是 http://example.com/index.php?page=abc&name=gaurav&id=10&page_no=2

我希望这个网址像这样显示

http://example.com/abc/gaurav/10/2

我举的例子中的 url 有多种不同形式,但 page 变量始终存在在网址中。

如果我为上述两个网址提供规则,则没有任何效果(显示 500 内部服务器错误)

请帮我编写此规则。

I am working on a website created using PHP.

Development environment is Windows (using xampp)

The pages of website are displayed according to the value of the "page" variable that we pass to the index.php file as a url variable.

i.e. http://example.com/index.php?page=xyz

The url above points to the xyz.php file

There are around 50 pages (can be increased in future).

I want my urls to be like this

http://example.com/xyz

for this to work I wrote the following .htaccess rule in the .htaccess file (in the root folder of project)

RewriteRule ^([^/]*)$ /index.php?page=$1 [L]

But it is not working at all.

Another url is
http://example.com/index.php?page=abc&name=gaurav&id=10&page_no=2

I want this url to be shown like this

http://example.com/abc/gaurav/10/2

There are many different forms of the url that I took example of but the page variable will always be there in the URL.

If I provide the rule for both the above urls then nothing works (500 internal server error is shown)

Please help me write this rule.

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

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

发布评论

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

评论(1

迎风吟唱 2024-11-11 19:48:02

尝试

RewriteRule ^([^/]+)$ index.php?page=$1 [L]

使用 + 而不是星号。它将使用所有字符,直到找到正斜杠 (/)

Try

RewriteRule ^([^/]+)$ index.php?page=$1 [L]

So a + instead of a star. It will use all characters till he finds a forward slash (/)

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