如何为不同的 url 编写以下 htaccess 重写规则
我正在开发一个使用 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 ishttp://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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
使用 + 而不是星号。它将使用所有字符,直到找到正斜杠 (/)
Try
So a + instead of a star. It will use all characters till he finds a forward slash (/)