.htaccess具体搬迁

时间:2012-02-02 20:36:36

标签: php .htaccess

我遇到了.htaccess的麻烦,我知道有类似的帖子,但我甚至无法弄明白。

我需要我的网页从网址重新定位用户 website.net/photos?action=something 至 website.net/?fotky=something

全部谢谢

1 个答案:

答案 0 :(得分:1)

尝试将以下内容添加到站点根目录中的.htaccess文件中。

RewriteEngine on
RewriteBase /

RewriteCond %{QUERY_STRING} (^|&)action=([^&]+)(&|$) [NC] 
RewriteRule ^photos$  ?fotky=%2 [NC,L,R=301]