【问题标题】:How to change url of two pages in htaccess如何在htaccess中更改两个页面的url
【发布时间】:2023-04-07 18:30:01
【问题描述】:

我想在 htaccess 中更改 URL

/grid.php?view=Samsung

/mobile.php?id=Galaxy-j5

/Samsung 

/Samsung/Galaxy-j5

【问题讨论】:

    标签: php .htaccess web-services url


    【解决方案1】:

    基本的

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/(.*) mobile.php?id=$2 [L]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*) grid.php?view=$1 [L]
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-11-06
      • 1970-01-01
      • 2015-09-20
      • 2012-11-10
      • 1970-01-01
      • 1970-01-01
      • 2016-04-23
      • 1970-01-01
      相关资源
      最近更新 更多