【问题标题】:Htaccess rewrite no extension or slashHtaccess 重写没有扩展名或斜杠
【发布时间】:2014-03-08 09:34:21
【问题描述】:

我希望我的服务器上的每个文件都像这样 "mywebsite.com/video?id=vgIjgt863_53", 我有 php,所以目前它看起来像这样 “mywebsite.com/video.php?id=(id)” 我在 htaccess 中需要这个

【问题讨论】:

    标签: php html .htaccess rewrite


    【解决方案1】:

    使用此代码将您的 htaccess 放在根文件夹中

    Options +FollowSymLinks -MultiViews
    RewriteEngine on
    
    RewriteCond %{QUERY_STRING} ^id=(.+)$
    RewriteRule ^video$ /video.php?id=%1 [L]
    

    【讨论】:

      猜你喜欢
      • 2013-03-12
      • 1970-01-01
      • 1970-01-01
      • 2014-10-22
      • 1970-01-01
      • 2013-09-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多