Tagged Questions
0
votes
0answers
13 views
Move a website to subdomain while preserving (rewriting) URLs
I'm considering to move the (Confluence) wiki content of www.site.com to the subdomain wiki.site.com to make room for a well-designed landing page (Wordpress) which should take the wiki's place on ...
2
votes
1answer
26 views
Force url to use www [duplicate]
I'm confused about how to force my url to use www in the address.
I have a .htaccess code like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
...
1
vote
1answer
23 views
Redirecting previous domain subfolder links
I've recently bought a domain that was unregistered. After looking in Google webmaster tools, Google is trying to crawl random pages that don't exist. Turns out it did have a previous owner.
The ...
0
votes
0answers
33 views
URL rewrite with mod_rewrite
I have rewrite rule in parent directory which rewrites URL:
From example.com/index.php?id=test&cat=category
To example.com/index?test&cat=category
Here is my .htaccess file:
Options ...
2
votes
1answer
109 views
How do I use htaccess to make a short URL to a MediaWiki page?
I'd like to rewrite /liam to /index.php/Liam_Edwards-Playne. I've currently written this below in the appropriate .htaccess file but it is still returning a 404:
RewriteEngine On
RewriteRule ^/liam$ ...
3
votes
1answer
171 views
URL rewriting via forward proxy
I have an app that runs inside my firewall and talks out to multiple end points via HTTP/HTTPS on a non-standard port e.g. http://endpoint1.domain.com:7171, http://endpoint2.domain.com:7171
What I ...
2
votes
2answers
631 views
apache rewriting url doesn't work(using godaddy hosting)
I'm using a framework to create my website(codeigniter) by default the urls are like this:mysite.com/index.php?/etc/etc/etc.
And I'm trying to remove the index.php?, I tried to remove it by doing ...
1
vote
1answer
286 views
URL Rewrite for SSL
I have SSL configured for a cart directory in my website. I'm having a very difficult time trying to configure SSL for a different directory within the same website. I ask the question on SO, and was ...
1
vote
1answer
319 views
Decode url in httpd.conf or htaccess
For some reason I am getting 404 errors in my log file because of users trying to access something like http ://www.domain.tld%3Fid%3D222 instead of http://www.domain.tld?id=222
I've unsuccessfully ...
2
votes
1answer
294 views
Htaccess - Rewrite png to php file
I currently use trans.png.php?id=1&campaign=test to track my newsletter campaigns.
I want to use trans.png instead as it's the src of an img tag.
How can i do this in htaccess? Also is there any ...
5
votes
3answers
9k views
How to remove trailing slashes from URL with .htaccess?
The situation
Across the entire domain, we'd like the URLs to hide file extensions and remove trailing slashes, independent of the domain name itself (as in, works on any domain).
Sample of our ...
3
votes
1answer
134 views
Looking for a step by step guide to URL re-writing with mod_rewrite and other methods
I'm looking for step by step resource about how to rewrite URLs and have a few specific questions.
I've read the documentation on mod_rewrite in Apache, but I still find myself a little lost.
If ...
0
votes
1answer
814 views
How can I fix an Apache redirect loop
I have a strange Apache/WordPress redirect loop that I can't seem to figure out.
Here is the relevant logs and other info: http://pastebin.com/E1afW2vw
It seems that the page request gets made, and ...
1
vote
1answer
397 views
Can Apache “Correct” URL Case?
Let's say I keep every word of file names capitalized. For example, Home.php or MultipleWordTitle.html.
Is there any way for Apache to redirect requests for incorrectly-cased URLs to the capitalized ...
-1
votes
2answers
2k views
Having trouble redirecting old product sites and categories to new pages
I recently upgraded a shopsystem to prestashop and imported the previous products (~1200), and I managed to keep the old category_id and product_id. I'm trying to set up those 2 rules to redirect all ...
1
vote
1answer
844 views
URL Rewrite to subdomains?
say i have a website with /article.php?id=1&category=Minecraft&Name=Lorem+Ipsum
and /topic.php?category=Minecraft
how would i setup url rewrite to make the topic pages being
...
0
votes
1answer
2k views
“Rule caching” in .htaccess - How to force apache to re-read a modified .htaccess?
I am reorganizing the link structure of a dynamic php-based site of mine. What I am trying to obtain is:
redirect old links onto new ones;
create new RewriteRules for new links, since every 'link' ...
0
votes
3answers
67 views
RewriteRule was matching before migration, but now browser gets a 404 error
I have this URL rewrite rule in my .htaccess
RewriteEngine on
RewriteRule ^home$ home.php
but when I try to reach awatag.com/home I get a 404 error.
This rule worked perfectly before moving the ...
1
vote
1answer
9k views
Apache: Virtual Host and .htacess for URL Rewriting not working
I have configured a virtual host in my local machine and every thing is working fine.
Now I want to use SEO friendly urls. To achieve this I have used the .htaccess file.
My virtual host ...
0
votes
1answer
217 views
How to block access to a sub-site with mod_rewrite?
Let's say I have the sites siteA.com and siteB.com. They are hosted such that siteB.com actually points to siteA.com/siteB.
How can I block someone from visiting siteA.com/siteB using mod_rewrite?
...
3
votes
2answers
4k views
Rewrite for robots.txt and favicon.ico
I have setup some rules in which subdomains (my users) will default to where I have located the robots.txt, favicon.ico, and crossdomain.xml
therefore if a user creates a site say
...
1
vote
2answers
644 views
How do i force www subdomain on both https and http
For whatever reason I can't seem to get this right, I've looked at many examples on here and apache's website. I'm trying to force www.domain.com instead of domain.com on EITHER http or https but I am ...
1
vote
2answers
573 views
How to add an exception to this rewrite rule
I need to change this so that one file in wp-admin is not forced through https:
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ ...
0
votes
1answer
88 views
Pretty URLs for dynamic links generated based on a 3rd party soap web service
We have a 3rd party web service which we interact with via Soap. In this regard we query the 3rd party for resources, construct a home page and all links generated on this index page are referencing ...
2
votes
2answers
408 views
Removing the script extension with URL rewriting on Apache
Given a (slightly theoretical) physical disk layout of:
\products\cameras\50d.jpg
\products\cameras\20d.jpg
\products\lenses\18-55.jpg
\products\lenses\28-135.jpg
\products.php
At the moment, I've ...
7
votes
1answer
280 views
Problem with .htaccess and mod_rewrite after moving site to new server
The site seems to draw the correct links but its not redirecting me to the correct view.
The same code works fine on the old server here http://ruse.systemio.net/q&a/.
The new server is here ...
7
votes
1answer
246 views
Apache rewrite rules for development workstation and server
I've got developers editing pages for several sites on a WAMP stack and then uploading to the public servers running LAMP stacks. We're pretty happy with it, but we have this minor annoyance: we can't ...