在 web.config 中重写 php 文件的 URL



我在这里遇到了一些问题,我已经检查了这里另一篇文章的所有答案,但我遇到了500错误,或者什么也没发生。

问题是:

考虑我有一个这样的网站:flan.com

所以,我有一个动态网址,如下所示:

flan.com/index.php?page=25flan.com/news.php?news=aqweqwr546

请注意,此值"aqweqwr546"是动态的,可以是数字或字母或两者兼而有之。

我需要这样的东西:

对于第一个:flan.com/page/a title shown here

对于第二个:flan.com/news/a title shown here

或类似的东西是用户友好的 URL!

请帮助我。提前致谢

这样重写你的网址...

RewriteEngine On
#For home page. i.e. index.php
RewriteRule ^page/([a-zA-Z0-9]+)$ index.php?page=$1 [L]
#For news page i.e news.php
RewriteRule ^news/([a-zA-Z0-9]+)$ news.php?news=$1 [L]

web.config这样的..

<rewrite>
  <rules>
    <rule name="Rewrite to index.php">
      <match url="^page/([a-zA-Z0-9]+)$"/>
      <action type="Rewrite" url="index.php?page={R:1}/>
    </rule>
    <rule name="Rewrite to news.php">
      <match url="^news/([a-zA-Z0-9]+)$"/>
      <action type="Rewrite" url="news.php?news={R:1}/>
    </rule>
  </rules>
</rewrite>

网站的根目录中创建或编辑.htaccess文件,并放置以下内容:

RewriteEngine On
RewriteRule /(.*)/$ news.php?news=$1

这将为您提供如下所示的 URL:

flan.com/aqweqwr546/

或者这个:

RewriteRule /(.*)/(.*)/$ $1.php?news=$2

会给你这个:

flan.com/news/aqweqwr546/

相关内容

  • 没有找到相关文章

最新更新