我想重定向此链接:
/content/catagorie.php?item=Notariaat
到此链接:
http://www.meddo.nl/vacatures/notariaat/
我用过这个:
android:background="@drawable/filename"
但它不起作用。
THX
答案 0 :(得分:0)
使用此301重定向
Redirect 301 http://example.com/content/catagorie.php?item=Notariaat http://www.meddo.nl/vacatures/notariaat/
答案 1 :(得分:0)
您可以在root .htaccess文件中使用这两个规则:
RewriteEngine On
# external redirect from actual URL to pretty one
RewriteCond %{THE_REQUEST} /content/catagorie\.php\?item=([^\s&]+) [NC]
RewriteRule ^ /vacatures/%1? [R=302,L,NE]
# internal forward from pretty URL to actual one
RewriteRule ^vacatures/([^/.]+)/?$ /content/catagorie.php\?item=$1 [L,QSA,NC]