skip to Main Content

Apache rewrite rule help, strange results

I am going in circle on this. RewriteRule ^Homes-by-price Real-Estate-Listings.php?minPrice=0&maxPrice=999999999 [NC,L] RewriteRule ^Homes-by-price/([0-9]+) Real-Estate-Listings.php?minPrice=0&maxPrice=$1 [NC,L] The first line works. When I enter /Homes-by-price and get the page showing Real-Estate-Listings.php?minPrice=0&maxPrice=999999999 But when I type in /Homes-by-price/100000 I should get Real-Estate-Listings.php?minPrice=0&maxPrice=100000 Instead…

VIEW QUESTION

Apache VirtualHost redirect, change only domain

How can I create VirtualHost to redirect all links changing only its domain, including subdomain and parameters: exampleA.com -> exampleB.com test.exampleA.com -> test.exampleB.com test1234.exampleA.com/url/test.html?param=222 -> test1234.exampleB.com/url/test.html?param=222 I want to redirect all subdomains like *, and it should be permanent 301…

VIEW QUESTION

Solr copy field copied to another field – Apache

I have the follows configuration: ... <field name="spellcheck" type="text_spell" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_de" type="text_spell_de" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_en" type="text_spell_en" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_fr" type="text_spell_fr" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_ja" type="text_spell" indexed="true" stored="true" multiValued="true"…

VIEW QUESTION

How to make Apache stop log some my Urls

I have a Web Application. All requests to my app will pass to Root/index.php. Example: 1. http://myapp.com/?call=phpfile1.processSomething&param1=x&param2=y 2. http://myapp.com/?call=phpfile2.processSomethingElse 3. http://myapp.com/?call=phpfile3.methodXYZ... And I have an other app (WindowServices), it will call some Urls in my WebApp (All day :v). When…

VIEW QUESTION
Back To Top
Search