我已經通過前十頁的搜索結果爲「301個重定向」好好看看,不能因此在這裏找到答案去...301查詢字符串重定向到簡單的URL
我我從一個蹩腳的老CMS轉移到了我的頁面,它沒有給我提供很好的URL,而我想爲我的關鍵頁面設置一個301重定向。
當前網址:http://www.domain.com/?pid=22 新網址:http://www.domain.com/contact/
我使用Wordpress和我目前的htaccess文件是這樣的:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
任何幫助將是真棒!