Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
97 views

Ignore trailing slash with Apache Rewrite

I'm using mod_rewrite to redirect like so: RewriteRule (work)/?$ $1.php [L] This sends any URL ending in /work or /work/ to work.php The problem is, when a trailing slash is included, it treats it ...
7
votes
3answers
2k views

Gernerate custom urls within Magento

I am currently looking at trying to generate custom urls/routing using magento, currently i have set a default route in config.xml within the local module. <frontend> <routers> ...
7
votes
8answers
465 views

Why should I use “Web 2.0”-style URLs?

In short, why use something like http://stackoverflow.com/badges/6/supporter instead of something "simpler" (and subjectively, at that) like http://stackoverflow.com/badges/6/. Even on my own site ...
4
votes
5answers
3k views

How do I turn off viewstate for good?

Coming from a PHP background I love using clean URLs to grab data from one service to another. However, on some of my ASP.NET projects I get the horrible ViewState parameter in my URLs. Is there a ...
3
votes
1answer
383 views

MOD_REWRITE for URL variables, removing empty parameters and using more than 1field for the first and second variables

I have a previous question that was answered very well but requires an amendment and I was unable to reply so have created a new question. I required a mod_rewrite that made the following: ...
3
votes
1answer
181 views

Using MOD_REWRITE for URL variables and removing empty parameters when not used

I am trying to create a mod_rewrite that when a user enters, or it shows in the URL: www.example.com/var1/var2/var3/var4/ it outputs the same as ...
3
votes
3answers
518 views

extensionless url in IIS7.5

hey guys, i have a website, which is been working on Dotnetnuke, i am using dotnetnuke's friendly url to use clean url's instead of asp's ugly QueryString urls, now my problem is, what configuration ...
3
votes
2answers
1k views

PHP: the best way to remove punctuation marks, symbols, diacritics, special characters, etc

I use these lines of code to remove all punctuation marks, symbols, etc as you can see them in the array, $pattern_page = ...
3
votes
2answers
1k views

Some basic questions about Django, Pyjamas and Clean URLs

I am farily new to the topic, but I am trying to combine both Django and Pyjamas. What would be the smart way to combine the two? I am not asking about communication, but rather about the logical ...
2
votes
4answers
253 views

Rails link_to with acts_as_taggable_on_steroids

I am using acts_as_taggable_on steroids and I am having problem with this piece of code that generates a link to a tag: <%= link_to tag, tag_path(:id => tag.name) %> when I access the URL: ...
2
votes
3answers
404 views

jquery getElementById on a ajax data

I got a function in javascript that first checks if the username is the required length and than sends the username to a page for a test if the test is a success there will be a <span ...
2
votes
2answers
530 views

Password Protect Virtual Directory With .htaccess

I have a site with a virtual directory structure like mysite.com/folder/title which is actually a .htaccess rewrite to mysite.com/f/index.php?p=title. I want to password protect the folder folder with ...
2
votes
3answers
704 views

Drupal clean urls on custom page GET request

I have a drupal page (content type page) that should accept GET values using clean urls. I put the following code in the page body using the php code input format. <?php $uid = $_GET['uid']; ...
2
votes
8answers
7k views

How does one encode and decode a string with Python for use in a URL?

I have a string like this: String A: [ 12234_1_Hello'World_34433_22acb_4554344_accCC44 ] I would like to encrypt String A to be used in a clean URL. something like this: String B: [ ...
1
vote
1answer
96 views

Cleaning up urls and duplicate pages (forcing canonical from start).

I am trying to find ways do the following via htaccess. Remove (.php) extension Remove trailing slashes (/) Redirect former (.php) page to non-php page Redirect all traces of the root index to the ...
1
vote
0answers
228 views

How to hide file extension in nginx

Coming from an Apache background, in the past I have hidden .html file extensions using a pair of rewrite rules: RewriteCond %{THE_REQUEST} ^(GET|HEAD)\ /.+\.html\ HTTP RewriteRule ^(.+)\.html$ ...
1
vote
1answer
149 views

Problems with clean URLs .htaccess - page not found

I'm trying to make clean urls with php and im getting some errors. Hope someone can help. My .htaccess is as follows: # Use PHP5 Single php.ini as default AddHandler application/x-httpd-php5s .php # ...
1
vote
3answers
75 views

Need php template help and clean url help

I'm new to PHP and web development in general, but have been a programmer for 5 years. I'm trying to work on my own website from scratch using Notepad to edit my PHP files and WAMP for my server. ...
1
vote
0answers
126 views

lighttpd and fastcgi.map-extension detection / content negotiation on rewritten “clean” URLs with no file extensions?

My current website uses PHP to build and output HTML content to the browser specified by rewritten "clean" urls. url.rewrite-once = ( "^/([-a-zA-Z0-9]+)/$" => "/index.php?section=$1", ...
1
vote
2answers
499 views

Opencart -> Clean URLS

I am using Opencart 1.4.9.4 is there a way that I can change my urls from the query string to category/product? Example: Current: index.php?route=product/category&path=57 Wanted: ...
1
vote
2answers
226 views

pretty urls instead of id in php/codeigniter

I am developing a PHP site using codeigniter, and would like some help in how to go about achieving clean urls instead of numeric ids. For example, instead of www.site.com/category/view/1 , i want ...
1
vote
3answers
378 views

jquery - build pretty url from parameters

jQuery has a param() function, I'm looking for similar functionality. I need to return a url in my object. For example: url: function() { return this.baseUrl + '?' + $.param({page: this.page, ...
1
vote
3answers
265 views

auto redirect to clean urls

how can i auto redirect a site from dirty url to clean url in php , something like http://www.mysite.com?page=page1&action=action1 to http://www.mysite.com/page1/action1
1
vote
3answers
355 views

Clean URL's for search query?

This works: HTML <a href="/search/querystring">query</a> htaccess RewriteRule ^search/([-0-9a-z]+)$ /search.php?q=$1 [L] Going through a search form: <form method="get" ...
1
vote
3answers
360 views

Can clean URLs be achieved in a pure ColdFusion solution?

We need to estimate a portal based on ColdFusion technology. We have no information about the hosting environment (could be Windows or Linux). One of the requested features is clean URLs. Does ...
1
vote
1answer
107 views

PHP - Creating pretty urls and then coding them back agian

I want to be able to write pretty urls from example 1 to example 2 and back to example 1 agian. But I really don't know how to though and was wondering how I do this using PHP or do I need to use ...
1
vote
1answer
102 views

How to properly use clean URLs

I really want to learn how to use clean URLs but I'm unsure how it all works. I have read a couple tutorials and watched some YouTube videos but they seemed very different from each other. Is there ...
1
vote
3answers
146 views

Asian URLs or English slugs in webpages

Here's a tough one: I'm working on a website where most of the content is in Japanese. But consider this url: http://www.stackoverflow.com/質問/日本語のURLはどうする Most URL parsers, including ...
1
vote
2answers
94 views

Drupal Clean Urls break randomly for arbitrary paths

I've done everything right. My server has mod_rewrite enabled, my virtualhost path has AllowOverride set to All, and I have the .htaccess file in place with the rewrite rules same as everyone. But I ...
1
vote
1answer
551 views

Clean URLs for static HTML files with .htaccess and mod_rewrite

mod_rewrite always baffles me... can anyone tell me the rules I need to get the following clean URLs? Desired URL on the left, real URL on the right. /our-work/ => /our-work.html ...
1
vote
3answers
95 views

Why would Apple.com and other sites have some pages end with .html and have clean links for others. Usability advantages?

I was wondering if anyone knew the thinking behind there decision to do this: Alot of pages on Apple.com have clean links such as: http://www.apple.com/wifi/ however some of there pages end with ...
1
vote
1answer
730 views

Apache rewrite URL but don't rewrite certain folder

I am using Apache to rewrite my URLs into clean URLs. RewriteRule ^(.*) index.php Currently this rewrites directories too, which is what I want, since I want everything run through my ...
1
vote
1answer
306 views

Tomcat, Groovy and clean urls

I'm trying to get Groovy running inside Tomcat with clean urls. Since my knowledge of Tomcat's url mapping and filters is quite limited, I'm running into a brick wall. What I'd like is to create a ...
1
vote
1answer
169 views

Should I use mod_rewrite for my site's URLs?

My site currently handles URL's like this... /?p=home /?p=profile&userid=1 /?p=users.online /?p=users.online&page=23 /?p=mail.inbox /?p=mail.inbox&page=12 ... and so on, there ...
1
vote
3answers
424 views

using seo user friendly in php

this is the URL path I currently use: /index.php?page=1&title=articles I want to get the URL path as /index/page-1/title-articles using SEO user friendly URLs in PHP. And how to get the ...
0
votes
0answers
25 views

Drupal 7 Clean URL's downloads a file type when saving

Clean URL's work but when enabled nothing saves right. When I save anything (configurations,new pages, new articles, etc.....) instead of redirecting it downloads a file to my computer. I open the the ...
0
votes
1answer
41 views

Removing .php from urls with lighttpd (clean urls)

I am migrating an over loaded server from apache2 to lighttpd, currently I am proxying all the static resources from the lighttpd server but that still doesn't fix the load problems. I want to ...
0
votes
1answer
15 views

CakePHP URLs load view in a separate window

I'm having a problem with my URLs in CakePHP. I have a controller named 'users' that has an index and a highscores action(action, method, function, whatever). When I go to mydomain.com/users, I get ...
0
votes
0answers
25 views

Access denied on cleanUrls activation - Drupal

I uplooaded a drupal website on pcextreme.nl, i restored as i usually do, using backup and migrate. The backup is 1.6M so i don't think it should give any problem. Then i modified the .htaccess as ...
0
votes
4answers
83 views

How to GET to a clean url using php

If I have a GET search field, how could I have that submit to a clean url (e.g. /search/keyword instead of index.php?fn=search&term=keyword)? I don't want to use Javascript to overwrite the submit ...
0
votes
1answer
32 views

Rewrite Rule to make clean home page url

i need to rewrite my homepage. in navigation bar i want to see http://domain.com/ which is created from real page http://domain.com/abc Thank you.
0
votes
1answer
47 views

Mod-Rewrite Rule - Unwanted 301 Redirect [closed]

Possible Duplicate: .htaccess, Clean URL, unwanted 301 redirect, 1AND1 Mod_Rewrite is redirecting. RewriteRule ^viewPage/([^/]+)/([^/]+)/$ /viewPage.php?ID=$1&Title=$2 [NC,L] Typing ...
0
votes
1answer
146 views

.htaccess, Clean URL, unwanted 301 redirect, 1AND1 [closed]

I have .htaccess file: Options +Indexes +FollowSymLinks -MultiViews RewriteEngine On RewriteBase / RewriteRule ^page/([^/]+)/([^/]+)$ /page.php?ID=$1&Name=$2 [NC] RewriteRule ...
0
votes
3answers
69 views

.htaccess - Cache files from URL like /files/large/6

We have a multisite CMS that handles images and other files like this.. How can we cache images and other files that are in www.(or non-www.)variable-domain.com/files/* with .htaccess? This is ...
0
votes
1answer
28 views

Clean urls .htaccess file doesn't work

The query string of my webpage looks like this and this shows in the urls now. board_list.php?ptype=list&code=Breaking_News&idx=5752&page=1 It is really messy, so I've been looking for ...
0
votes
2answers
75 views

PHP question mark on Clean URLs

i am currently trying to learn about clean urls. i was using windows once. i switched to ubuntu when suddenly my .htaccess seems to be not working here is my htaccess <IfModule mod_rewrite.c> ...
0
votes
0answers
61 views

Clean urls MAMP PHP htaccess

I got it to work under linux with ease adding the allowoverride in my apache sites-available default file but this param does not seem to do the trick under Mac in their config files. Any clue to how ...
0
votes
1answer
51 views

can i type a clean url in drupal and be converted instead into a url with a query string?

i'm creating a drupal site that should include a feature that will turn a clean url into a a url with a query string. The way it should work would be: user would type any clean url like ...
0
votes
2answers
104 views

Clean URLs in PHP without mod_rewrite

I am developing a backend for a site I built for a client in PHP (which I rarely use), which is almost completed. I'm a Rails developer primarily, so I'm having a hard time not going for some ...
0
votes
0answers
62 views

Apache Rewrite rule: Creating clean URLs and passing parameters

This is a multi-part question. I have a subdirectory called "vehicles", which contains PhP + HTML files, and subdirectories. 1) When someone types mydomain/vehicles/<any file name>, I want that ...

1 2