Hello用户我基本上想要改变手中链接的结构。
我正在使用<?= $_GET['content'] ?>
来捕获内容项。
下面列出的代码是我尝试使用的代码。
RewriteEngine On
RewriteBase /
RewriteCond
RewriteRule ^/$ live.php?content=$2 [L]
但它不起作用。
例如,
old - &gt; domain.com/live.php?content=username
new - &gt; domain.com/username
答案 0 :(得分:1)
你的问题不是很清楚,但我想你需要的是:
RewriteEngine on
RewriteRule ^/(.*)$ /live.php?content=$1 [L]