Hi guys, I have a dynamic page say: www.mysite.com/index?lookup=faqs I want use a static url like: www.mysite.com/yourfaqs to visit that page. And once people enter the dynamic url, it should be directed to the static url. That is, the URL shown on the address bar on the browser, should always be the static url. I have the following rules: RewriteRule ^yourfaqs /index.php?lookup=faqs [L] RewriteCond %{QUERY_STRING} lookup=faqs RewriteRule ^index\.php$ http://www.mysite.com/yourfaqs/$1? [R=301,L] But as might see the problem here, it keeps redirecting. Firefox has detected that the server is redirecting the request for this address in a way that will never complete. Is there a way to do what i want? Thanks in advance.
RewriteEngine On RewriteCond %{REQUEST_URI} ^/static_url RewriteRule ^(.*)$ http://full.url/here.html [P] RewriteCond %{REQUEST_URI} ^/static_url2 RewriteRule ^(.*)$ http://full.url/here2.html [P]