Tagged Questions
3
votes
2answers
27 views
Apache mod rewrite for dynamic pages
I'm having a problem with my mod rewrite rule that I wrote for my website, nothing seems to change as my pages URL are loading the same as before, if anyone could have a look at it and let me know if ...
0
votes
1answer
11 views
Rewrite with relative path
I am going nuts over a reqrite rule on my local machine...
i even enabled the rewrite log and this is what i get from a single page load on the url it should rewrite:
ip - - [21/May/2013:08:13:18 ...
0
votes
0answers
10 views
How to 301 url which are getting generated automatically with dots
My webmaster showing some urls ending with dots - showing as duplicate url of the sam econtent
http://www.xyz.com/index.php?option=com_news&view=detail&n_id=170&ite..
...
0
votes
1answer
30 views
Apache mod rewrite url htaccess
I am a little bit confused and still learning on how to rewrite in Apache htaccess
How can I turn this:
http://www.mydomain.com/dir1/post.php?%20id=1
into this:
...
1
vote
1answer
29 views
Apache URL Rewriting - change globally the root of a site
I'd like to internally redirect any URL coming to the root and all the subdirectories of a site to a specific subdirectory (and its subdirectories) of this root, i.e.
http://example.net/index.html ...
0
votes
3answers
40 views
REST-like URLs with PHP
According to what I've read about RESTful services, one is supposed to be able to get a "resource" (like a database record) using a request to a URL with the record id at the end, like this: ...
-3
votes
0answers
34 views
PHP - I want to display IMG SRC's filename (xyz.jpg) as five characters of a random MD5 [closed]
Example, on the server I have image_a.jpg
I don't want the user knowing it is image_a.jpg
I want the browser to render it like this:
<img src="img/0df1cab3"><br />
Instead of ...
0
votes
0answers
39 views
Where is the index.* file that is served as the MAMP start page URL?
I'm trying to understand how MAMP manages the Apache web server but I cannot find the index.* file that is being served as the MAMP start page.
The virtual hosts configuration, httpd-vhosts.conf, is ...
0
votes
1answer
42 views
Apache configuration: automatic renaming of “file:///C:/xampp/htdocs/” to “localhost” in url when opening a local html file
I'm new to web development so bear with me. I might be missing something despite all my searches.
When I open an html file (of course from a directory served by Apache), it opens in a browser but the ...
0
votes
1answer
31 views
page is displaying error page instead of intended page
This code is really puzzling me as to why this is happening. if i add the [R=302,L]
then my link works perfectly as i would hope. but if i don't add it and i have just [L]
the it goes to an error ...
0
votes
0answers
16 views
Re-writing the URL's in page source
Is there a way we can rewrite the URL's appearing in page source?
What I'm trying to do is... I have deployed my application on tomcat and created a proxy using httpd.
Now I want to enable URL ...
0
votes
0answers
25 views
How to make a htaccess rule to remove & from URL
I have some links in my site like www.example.com/name/id/about
Some names contain the & character (1 or more times) and I would like to remove it
Can any1 suggest a rewrite condition and rule ...
1
vote
2answers
33 views
Apache URL Rewriting Causing Internal Server Error
Why does the following Apache configuration produce an internal server error:
# Turn on the rewriting engine
RewriteEngine On
# Redirect "page/" and "page" to "page.php" . Also, redirect "page/en/" ...
0
votes
1answer
32 views
Rewrite URL SEO
My site has a url like this
http://www.mydomain.com/index.php?page=doctors&docid=99
Using SEO rewrite
RewriteRule ^doctors/([0-9]+)/(.*).html$ index.php?page=doctors&docid=$1 [L]
I get
...
0
votes
0answers
48 views
Error 404 on Apache when the URL contains characters like brackets or hyphens
In my Zend Framework 2 application I have a catalog of cities with links to sports pages:
page "Cities" (/catalog)
Madrid link: website.tld/catalog/Madrid
Berlin link: ...
1
vote
1answer
30 views
Username in URL and cache
On my site I allow users to change their usernames. Usernames are used in URLs of their profiles.
On my frontpage there are many blocks which contain usernames and links to profiles (new users, last ...
0
votes
0answers
25 views
rewrite rule to update uri
In our login page, the subomdain should actually be picked up from the URL and rewritten to form URI.
User will hit URL like pqr.xyz.com to apache, in apache, need to rewrite above request with ...
0
votes
1answer
37 views
Redirecting all non-HTTPS requests to HTTPS
I bought an SSL certificate for a website and followed the full installation procedure given by the vendor. It is now active and if I go to lets say https://website.com I get the desired result.
...
0
votes
0answers
76 views
Apache mod_proxy to tomcat - Why does AJP proxy require webapp name?
I am configuring apache and tomcat using mod_proxy to redirect json requests to tomcat to be served.
I have configured the site so that the web app name isnt in the URL, so you only hit ...
0
votes
1answer
35 views
Create a URL like “teach.joshhornby.co.uk”
I am trying to create a URL on my server such as the one above teach.joshhornby.co.uk
When people type in the address I want them to access a folder on my server called backend.
I have tried this in ...
1
vote
2answers
48 views
Cleaning up messy URL's [duplicate]
Lets say we have a URL that looks like this: http://www.onegreatwebadress.com/index.php?sideID=home
and we want it to show something like this instead: http://www.onegreatwebadress.com/home
How is it ...
0
votes
0answers
50 views
Apache SHOW full URL
I've recently installed apache and having a litle bit of a problem.
When I go to the url htp://www.blar.com is loads the index page just fine.
When I go use the url htp://www.blar.com/test.php it ...
0
votes
1answer
28 views
How can I check whether file exists or not in specific folder in .htaccess?
this is my code,
RewriteCond %{DOCUMENT_ROOT}application/public%{REQUEST_URI} -f [OR]
RewriteCond %{DOCUMENT_ROOT}application/public%{REQUEST_URI} -d
RewriteRule application/public/.* - [L]
but ...
0
votes
1answer
40 views
apache rewrite module not transferring $_GET array
I use a simple URL Rewrite in my application.
RewriteEngine On
RewriteRule ^show/([a-zA-Z0-9]+)/([0-9]+)$ /show.php?d=$1&id=$2
RewriteRule ^sitemap/([a-zA-Z0-9]+)$ /sitemap.php?d=$1
RewriteRule ...
0
votes
1answer
20 views
Prevent Non-Existent Directories From Loading Wildcard Files
I am looking to prevent URLs for directories that don't exist from loading files with the same basename. For example http://domain.com/test/ is loading test.php. The test directory does not exist, but ...
0
votes
1answer
65 views
Nutch - crawl domain first
I am new to Nutch and have very and I try to make it do some specific crawling, i.e. I want it to first go e.g 3 levels deep withing one specific domain(e.g. wikipedia) - that part can be achieved by ...
-1
votes
1answer
27 views
Mod_ReWrite module/controller/action [duplicate]
Im sure this has been answered so many times before but I cant seem to find any good answer.
If you know where to find the right answer, please share the link!
Im developing an application in PHP and ...
0
votes
1answer
31 views
Mod rewriting www.domain.com/branch to www.website.com/ and the opposite
I have a particular need and I wanted to have some insights on the proper solution using .htaccess mod_rewriting.
Basically I need to map a domain to a subfolder of another domain. All requests for ...
0
votes
1answer
72 views
How to rewrite URL to index.php with a query even if a file/directory/location exists?
I'm trying to rewrite everything from my website to a file index.php with a query parameter that contains requested path, but when I just simply do RewriteRule ^(.*)$ index.php?url=$1 [L] my index.php ...
0
votes
1answer
29 views
Using values of a rewrite rule optional
Maybe somebody can help me on a rewrite Rule.
I use the following rewrite Rule with the Apache:
RewriteRule ^([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ /index.php?q=$1&m=$2&id=$3&p=$4 [L]
This ...
0
votes
1answer
156 views
Apache rewrite rule that ignores query/parameters, always redirects based on path
I'm trying to create a rewrite rule that will ignore any additional URL query/parameters and just redirect based on the path.
My company has a Wifi Hotspot service that does some DNS routing trick to ...
-1
votes
1answer
67 views
Can Apache handle + (plus) sign for space in URL?
My PHP web app generates URL's for files (images) where it puts + (plus) sign instead of space in the file name due to function urlencode(). But Apache doesn't translate + to space, it throws a 404 ...
0
votes
2answers
74 views
Why is escape character being added to URL parameters? [duplicate]
My PHP page is accepting a parameter in the URL. This parameter is being assigned to a variable as follows:
$msg = $_REQUEST["msg"];
When the HTTP request is sent to the website, the parameter is ...
0
votes
3answers
55 views
using / forward slash as a parameter
I have a single page index.php. I would like to accept parameters in the form /value. Right now, if I add anything after a /, it assumes I'm trying to access a separate file and errors out. Is there a ...
2
votes
2answers
297 views
How to pass URL in URL (as GET parameter) using PHP?
I'm having some problems passing URL's as GET parameter. When I try to access:
http://www.linkebuy.com.br/linkebuy/parceiro?url=http%3A%2F%2Fwww.google.com
I get the following message:
However, ...
0
votes
1answer
90 views
mod_rewrite Redirect to specific URL if domain X is used?
I have a site with two domains. I want that whenever domain X is visited (no matter what the path is... /foo/bar/, root or whatever), the browser should redirect to a specific URL.
So:
domainX.com ...
0
votes
2answers
79 views
.htaccess rewrite pretty urls that can still use get variables
I'm trying to write an .htaccess line that will rewrite to a php script but still allow any extra get variables to be added on the end. Is this possible?
Currently I'm trying to use this:
...
0
votes
1answer
45 views
Using htaccess for pretty URLs
I want to rewrite (shorten) for example website.com/contact.html to website.com/contact-us, but I can't figure out what I'm doing wrong. It just displays "The page isn't rediercting properly" or "The ...
-1
votes
1answer
84 views
convert dynamic url to SEO friendly [closed]
I have a url with on parameter only e.g
e.g item.php?id=1333
The id corresponds to a name :
I would like to convert it to something like ...
0
votes
1answer
267 views
htaccess file to redirect non-www and https requests, and rewrite URLs
I'm trying to create my first .htaccess to make an URL rewrite and other things, but I've wasted two days searching for information and trying to make it work with no success.
What I would like to ...
0
votes
1answer
21 views
Apache not receiving a referal_url?
I have an Apache server that receives around 7000 visits per day, but only about 1300 of 7000 receive the referal_url from the user agent.
Is there anything I can do about this?
I'd like to know ...
0
votes
1answer
77 views
Rewriting from https to http with htaccess how to remove port number?
Im having this htaccess code
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} on [AND]
RewriteCond %{REQUEST_URI} /products-page/bathroom-amenities/nourish-a-spa-line/
...
0
votes
2answers
59 views
apache rewrite all URLs to HTTPS except for one
I have a website that I'm directing all non SSL traffic to use the https protocol.
I've used
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
This works great, but I ...
0
votes
0answers
114 views
URL Excel link not being read properly in Android Application
Here's my code below:
package com.triumphcontacts;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import ...
0
votes
1answer
84 views
.htaccess works on Apache server, but not on FTP directory
I recently found the use of a .htaccess file to edit the URL of my webpages. This is done with mod_rewrite (Apache). I use XAMPP and the working files are inside of the appropriate htdocs folder. ...
0
votes
0answers
21 views
RedirectMatch not working with short path
Bad:
# localhost/api
RedirectMatch ^/api http://www.google.com/
Good:
# localhost/path/api
RedirectMatch ^/path/api http://www.google.com/
Why won't the first one work?
I'm on a Mac using ...
0
votes
2answers
72 views
Vanity urls + REST + Web crawler
I have an app that uses data from several applications APISs (Facebook,Twitter,Instagram etc..), accessing them from REST endpoints in PHP.
I am building a vanity URL for my app users, say ...
0
votes
1answer
71 views
url rewriting with .htaccess php
I want to make the username as part of the url, the url should go like this
domanin.com/username/profile.html
domanin.com/username/events.html
domanin.com/username/messages.html
Can you guide me ...
0
votes
1answer
15 views
How to avoid popup in http request
I have a url. when i access this through browser a popup comes and ask for user name and password and by giving right credential it opens the page. I want to know how to avoid the popup by passing the ...
1
vote
1answer
63 views
Make URL's case sensitive
Can somebody help me in resolving this.
I have a website on Linux server with Apache.
Our customer wants that the URL's used in the site should be case Sensitive
ie. if the link is ...


