簡體   English   中英

使用.htaccess進行重寫,其中一個與index.php一起使用,另一個與查詢字符串一起使用

[英]Rewrite using .htaccess one with index.php other with query string

使用.htaccess,我該如何重寫url,因此在訪問者輸入時:

mydomain.com/ mydomain.com/index.php

mydomain.com/LiveappGame mydomain.com/game.php?gid=LiveappGame

這僅適用於第二個網址,第一個無效

RewriteEngine on
RewriteRule ^([a-z0-9]+|)/?$ game.php?gid=$1 [QSA,NC]

您只需要DirectoryIndex指令用於第一個URL,而第二個URL則需要在正則表達式中進行更正。 您可以使用以下代碼:

DirectoryIndex index.php
RewriteEngine on
RewriteRule ^([a-z0-9]+)/?$ game.php?gid=$1 [QSA,NC,L]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM