我遇到了.htaccess的麻烦,我知道有类似的帖子,但我甚至无法弄明白。
我需要我的网页从网址重新定位用户 website.net/photos?action=something 至 website.net/?fotky=something
全部谢谢
答案 0 :(得分:1)
尝试将以下内容添加到站点根目录中的.htaccess
文件中。
RewriteEngine on
RewriteBase /
RewriteCond %{QUERY_STRING} (^|&)action=([^&]+)(&|$) [NC]
RewriteRule ^photos$ ?fotky=%2 [NC,L,R=301]