我的 .htaccess 有以下内容
RewriteEngine on
RewriteRule ^page/([^/\.]+)/?$ index.php?page=$1 [L]
当我调用 www.mydomain.com/page/myvalue 时,我得到了正确的结果。为了做到这一点,我需要更改指向我网站的所有链接是否正确?
有没有办法完成相反的操作,即当我调用 index.php?page=$1 将我重定向到 www.mydomain.com/page/myvalue 时?
我的 .htaccess 有以下内容
RewriteEngine on
RewriteRule ^page/([^/\.]+)/?$ index.php?page=$1 [L]
当我调用 www.mydomain.com/page/myvalue 时,我得到了正确的结果。为了做到这一点,我需要更改指向我网站的所有链接是否正确?
有没有办法完成相反的操作,即当我调用 index.php?page=$1 将我重定向到 www.mydomain.com/page/myvalue 时?