The permanent tag has no wiki summary.
0
votes
1answer
6 views
Mod rewrite / remove slash behind .html
I need a mod rewrite 301 that remove a slash behind the .html from the url.
Example:
Good URL: http://www.example.org/some-stuff-t123.html
Bad URL: ...
0
votes
1answer
9 views
Apache environment variables
I am using Apache 2.2 on Ubuntu 12.10
I opened my .htaccess file and set an env var called cache:
SetEnv cache ''
I have a php file which generates the cache and saves it in the environment var ...
-1
votes
0answers
38 views
Variable storage in python [closed]
i am building a search engine in python and i have a crawler. The crawler and the search mechanism are in the same file.
When my crawler finishes crawling the web, it stores the web index in a python ...
0
votes
0answers
22 views
301 redirect for a folder and all files in there to one new file?
I have read several posts right here regarding 301 redirects, but I was not able to find the right solution. :-(
I am redesigning a website and the new URL structure is very different to the old one.
...
-1
votes
2answers
62 views
How can I have a permanent link to an existing post on a wall or in a page? [closed]
Does anybody know if I can have a permanent link to an existing Facebook post on a wall or in a page? How?
0
votes
1answer
53 views
nginx folder to cdn redirection
I'm still quite new to nginx and despite I took a look at all the answers of this kind of questions and tried everything they said, nothing has worked so far.
I want to do this redirection:
From
...
0
votes
3answers
648 views
Best Way to keep Settings for a WinRT App?
I'm working on a WinRT app that's actually also a game. I need to keep different information such as audio settings or player statistics somewhere in sort of a file or somehow. If it's a file, just ...
0
votes
1answer
90 views
Redirect permanent with additional params
My goal is to redirect from
/kontaktaufnehmen/kontakt.html to /auftragsverwaltung/kontakt/?type=1
and the parameters must be added to the new path.
I tried
Redirect permanent ...
0
votes
1answer
114 views
Remove 'index.php' from url without removing parameters in .htaccess
I have a condition for url redirect like,
www.domain.com/something/anotherthing/index.php
i need the above url to redirect to
www.domain.com/something/anotherthing/
If i go to
...
0
votes
1answer
131 views
.htaccess 301 Redirect that Works for http and https cases, .com and localhost
I need to do a 301 redirect on a single page. If I just wanted it to work from www.example.com, I would have:
redirect 301 /urisegment1/urisegment2/urisegment3 ...
0
votes
2answers
68 views
Implementing permanent ban into a mysql database where ban time is “datetime”. How to?
I have a mysql column banneduntil. It's type is "datetime". How would I implement a permanent ban? (I've already implemented a basic ban system with admin/mod defined time). Should I just create a ...
1
vote
3answers
113 views
Altering a list permanently in common lisp
I have a list that is used within a loop, and on each iteration I apply a function that will alter the list permanently (popping and adding elements). The problem is, the original list is never ...
0
votes
0answers
57 views
301 redirect on iis7 moving site a to b
I need to move my website with thousands of pages from www.a.com to www.b.com.
The url structure will be exactly the same, only the domainname changes.
In a previous post i saw this code:
**<?xml ...
0
votes
1answer
427 views
IBOutletCollection of UIButtons wont set highlighted
I have an IBOutletCollection of UIButtons:
@property (nonatomic, retain) IBOutletCollection(UIButton) NSMutableArray *Buttons;
with an ibaction i would to change the highlighted state permanently ...
0
votes
0answers
82 views
How to redirect subdirectories and parent directory to different outputs
I'm trying to redirect the subdirectories in a site to a different URL then the parent directory is pointing to.
I'd like to have:
Redirect 301 /olddir http://mydomain/newdir
Redirect ...
1
vote
1answer
38 views
redirect a domain using htaccess permenantly
I am having a site with two domains pointing to the same site.
Lets say domain1.com & domain2.com
I want to do a permanent redirect of the domain1.com to domain2.com, so that anyone who visit ...
0
votes
1answer
48 views
301 .htaccess redirect with queries just after /
I've been struggling to do 301 redirects for few days right now. None of the existing topics helps.
I need to make redirects with .htaccess for the following pages:
Redirect 301 ...
1
vote
0answers
343 views
Permanently edit webpages?
Is it possible to edit a webpage and make the changes permanent? (on my machine of course)
So, for example, if a webpage wasn't displaying properly could I edit the html code and save the changes. ...
1
vote
2answers
152 views
htaccess experts: Redirect all but root to one TLD, redirect root to another TLD - WordPress
Help from the gurus is appreciated.
I have been requested to put a client's WordPress homepage on one TLD (i.e. domain.eu), and have all other pages/directories be 301'd to a different TLD extension ...
2
votes
2answers
202 views
How do I completely nuke a file from a git repo?
I've accidentally pushed a file that I don't have rights to to a publicly accessible repo.
What can I do to selectively nuke that single file from the repo completely, so that its data is completely ...
0
votes
2answers
1k views
htaccess permanent redirect from file that doesn't exists anymore
I got an old Peel shop that I moved on Prestashop. Before switch it live, I would like to keep the Google ranks I got on some products (approximatly 100 products).
So far I make my tests on ...
0
votes
1answer
227 views
Intermittent 404 and 500 errors with redirect permanent to Wordpress site
I have been bequeathed a Wordpress site that has been created in a sub-directory of our current main web site (standard HTML). So I have:
http://www.company.com/ as main site
and
...
0
votes
2answers
223 views
301 Redirect index.php?dir= to a folder?
I want to redirect the following
http://www.example.com/folder/index.php?dir=Dir1
http://www.example.com/folder/index.php?dir=Dir1/Dir2
to
http://www.example.com/folder/Dir1
...
0
votes
2answers
146 views
Redirect all but some to new URL?
I am moving site and I want to do a 301 redirect on all but some of the URLs,
Like this:
oldsite.com/* -> www.newsite.com
oldsite.com/specific/article/to/redirect -> www.newsite.com/fancy/blah
So ...
0
votes
3answers
339 views
PHP “permanent variable”
I'm currently working at a WordPress Plugin.
It supports shortcode and creates DOM elements, when the shortcode is called.
Now my problem:
I want to identify the elements.
So when the shortcode gets ...
1
vote
1answer
499 views
Android SQLite permanent data
I'm developing simple application for collecting expenses. For now I keep data using SQLiteDatabase. I have 2 questions:
1) When I clear application data in Settings->Application then SQLite db is ...
0
votes
4answers
616 views
Permanent Powershell Variable
Is there a way to define a variable in powershell so when i open up a new powershell window, it'll keep the same value? I'll need this variable to keep its value because I'll be needing to reboot my ...
6
votes
3answers
2k views
Why is this kernel module marked at permanent on 2.6.39
When I load this module:
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void) {
...
1
vote
1answer
103 views
Best practice for creating a variables page in php?
I have to create an administrator control panel and I want to create a php page that just contains variables that can be changed by the administrator and that would affect the rest of the website. Is ...
0
votes
1answer
779 views
Can't add directory to Python Path
In my .bashrc I added the following:
export PYTHONPATH=$PYTHONPATH:/home/tbao/src/Cython-0.14.1
When I relogin, I get the error:
-bash: /home/tbao/src/Cython-0.14.1: is a directory
I want to add ...
2
votes
2answers
938 views
Struts 2 redirects - permanent redirect option? 301 vs 302
By default, Struts 2 "redirect" is a temporary redirect (302). This makes sense. However, for SEO purposes, I need to issue a permanent redirect (301). Is there an easy way to achieve this?
0
votes
2answers
554 views
Cannot delete files from Dropbox(from iPhone app)
I'm trying to delete files from my dropbox. I have implemented the swipe delete behaviour. This 'swipe-delete' deletes the files from the tableView only. Next time I upload, I can see the 'deleted' ...
2
votes
3answers
193 views
Permanent java objects
I was wondering (there has to be an easy solution) if there is a way to make a number of objects, and use them in other classes and objects from those classes, without having to update them (in Java). ...
0
votes
1answer
135 views
Various htaccess redirect methods and why?
I have an obsolete url (mydomain.com/page.html) which naturally returns a 404 error. I want to implement a permanent 301 redirect back to my home page at mydomain.com. (Apache/Linux server with ...
0
votes
1answer
105 views
.htaccess domain forwarding directories issue
I try to redirect a secondary domain towards a main domain, but for a reason URLs containing a directory path aren't redirected (e.g. www.secondaryDomain.com/aDirectory ).
This is the section of the ...
1
vote
2answers
400 views
How can I implement a global, implicit filter in Django admin?
A lot of my models have a foreign key to a "Company" model. Every logged in user can be part of one or more companies (User m2m Company, not null).
I would like the current admin user to have ...
1
vote
1answer
253 views
htaccess redirect only subdirectory requests (not requests for TLD)
I moved my blog from example.com to example.com/blog. I now have a splash page at example.com. I would like old blog post requests like example.com/2011/example-post to redirect to ...
1
vote
1answer
342 views
Permanent Redirect from old ASP.net pages/site to PHP pages/site
I picked up a new-to-me client who had a site built in ASP.net (which I do not host).
I converted the site to PHP, which worked fine.
I want to set up redirects for all the pages he had in the old ...
0
votes
1answer
297 views
IIS Permanent Redirects
I have seen a few things written about this and remember one where there was an XMl file. So, there is an old URL and a new URL. If the user hits the old URL he is redirected to the new one.
The ...
0
votes
1answer
351 views
creating a permant folder in /tmp/ of ubutu 10.04
how to create a permanent folder in the temporary folder in ubuntu? without being deleted when the computer shuts down, and not have to repeat the process every time the computer restarts
0
votes
3answers
5k views
How to make HTML combo box save values added by user in textbox?
I have made a combobox for a web page. It takes values from user into text box & adds those to list on double click in text box. I want to make user entered values permanently stored as option in ...
1
vote
1answer
236 views
Permanent redirect exclude a path
I have the following:
RewriteEngine On
# Check if the host name contains a . (localhost won't)
# Check if the host name starts with www
# Check if the host name ends with .com
# Check if the ...
2
votes
1answer
288 views
How to add to Interface builder classes in a static library, permanently?
I know the thread on http://stackoverflow.com/questions/1058766/interface-builder-cant-see-classes-in-a-static-library
there add to InterfaceBuilder(IB) classes in static library, temporary.
The way ...
1
vote
4answers
402 views
iPhone permanent data store
How to store information in iPhone so that it cannot be removed when application removed. For example to indicate if user already used all trial features. I tried to use [NSUserDefaults ...
2
votes
1answer
1k views
want to add UInavigationBar rightBarButton like 'Now Playing' button of ipod, which doesnot disappears between view Transitions
i am new to iphone dev, i want to add a button (sign out) which remains fixed on the navigation bar's right side for every view.i.e. even when tabs of TabBar are tapped, the Sign Out button should ...
2
votes
1answer
608 views
Permanent deleting under TFS 2005
How can I permanently delete a folder/file under TFS 2005 source control?
I know about the tf destroy command, but that only works with TFS 2008.
I also know about the TFS PowerPack at CodePlex, but ...
0
votes
1answer
445 views
How to store data permanently in database using C#? [closed]
In my project I used C# with MS Access but data can't be stored permanently. I placed the database file in the project work space, but this did not solve my problem. Please provide connection string ...
2
votes
3answers
801 views
How can I send a 301 Permanent Redirect with ASP.NET?
I need to permanent redirect some pages, and redirect the user to the new URL as well.
This code only sets the correct headers. The user are not redirected.
public static void PermanentRedirect(this ...
