Clean URLs are purely structural URLs that do not contain a query string and instead contain only the path of the resource.

learn more… | top users | synonyms

0
votes
1answer
27 views

htaccess - One clean URL working but not the other

htaccess files have never been a strong point for me unfortunately. I'll just jump right in: #Turn RewriteEngine on Options +FollowSymLinks RewriteEngine on #Canonicalize URL ...
2
votes
0answers
60 views

clean URL test failed D7

I have spent about four hours trying to get clean URLs to work and it is really doing my head in. I am very new to Drupal and after hearing all the wonderful things about it, this is disappointing. ...
0
votes
2answers
34 views

Custom CodeIgniter route regex

Trying to improve a custom codeigniter route regex that I have created. Essentially the purpose of the custom route is to create a cleaner/shorter URL for client profile pages which have the format of ...
0
votes
1answer
30 views

Django Clean URLS and Form Data

I must have some sort of misconception of how GET variables can be manipulated in django, but here goes: (1) I have a search form that has two required parameters, and one optional parameters. The ...
0
votes
1answer
18 views

Regex is deleting the last character

In implementing clean URLs I wanted to map http://www.pikspeak.com/iframe/3/bird?autoplay=true to http://www.pikspeak.com/iframe.php?id=3&img=bird&autoplay=true using the following regex ...
0
votes
1answer
37 views

php multi lang site clean url

I'm developing a multilang site. The content generated on the varible that passes in the url. Exemple for about us page my url is: domain.com/file.php?id=1 I got one main file and in that file the ...
-1
votes
2answers
20 views

How to tell the browser, that a page is not found Send 404 error [closed]

I have a problem: I have a website, that detects unknown sites and than changes the resources to the error page. But even when the user types in an address which is not found like /foo the browser ...
1
vote
1answer
35 views

mod_rewrite /foo to /index.php?id=foo AND /foo/foo2 to /index.php?id=foo/foo2

I have a problem with mod_rewrite. I want to redirect those URIs in the title. I use the following rule RewriteEngine on RewriteCond $1 !^(folders not to be redirected e.g. css|images) RewriteCond ...
0
votes
0answers
8 views

CLEAN URL REWRITING

Pls help I want clean url my url is as follow: http://property-lawyer-noida.com/advocate/advisor/bid=ps1/Documents-Drafting-of-Free-Hold-Rights-Property.phtml I want above url like ...
0
votes
0answers
22 views

Rewriting public assets to omit file extension

For the sake of formality, I want to trim my asset URIs so that file extensions are omitted. For example, if I request /resources/stylesheets/common, Apache will return ...
0
votes
1answer
29 views

How to create custom rewriterules to specific conditions at wordpress htaccess?

I dont find something similar. /gallery/ is a wordpress created page that uses wordpress permalink settings. What I'm trying to do now is to add something behind it like /gallery/Gallery-title that ...
-2
votes
4answers
192 views

Removing .php extension from URLs using .htaccess? [duplicate]

Is it possible to remove the .php part from all of my URLs using a .htaccess file? Two examples: http://url.com/home.php http://url.com/shops.php Become: http://url.com/home/ ...
-1
votes
2answers
23 views

Want to rewrite URL through HTACCESS

I'm sure this has been asked in other forms, but I can't for the likes of me get this thing working after googling/trying for hours. I have a bunch of URLs like this: ...
0
votes
1answer
39 views

Fixing/cleaning user-provided URLs via Javascript

Does anyone happen to have javascript code focused on cleaning up user-provided URLs? I have a mobile app that asks users to enter their website URL, and many times the URLs are not properly ...
0
votes
0answers
114 views

Asp.net web form URL Routing RouteData.Values return weird values

I have an web application, developed on web form architecture. It has a very easy structure which has only one aspx file (default.aspx) and all other contents are being retrieved inside user controls. ...
2
votes
2answers
101 views

How can I use Weblogic (12 C) without the application context in the URL?

I am working on a web project that requires Weblogic server and the only way I can view the site after deploying (on my Macbook Pro) is by specifying the application name as a prefix to the entire ...
0
votes
2answers
56 views

Web project structure correct? [closed]

I use a webtemplate that I created myself to develop a web project. For this I use clean urls and in my .htaccess I configured that every request to a non existing file should be passed to my ...
2
votes
2answers
122 views

Executing a Yii module without a route

I have a module that is named article. It exists in the collowing folder: - protected - modules - article - controllers ArticleController.php ...
0
votes
0answers
22 views

Mod_rewrite not working in subdirectory

I want to put .htaccess in http://example/site directory with rewrite rules for pretty urls, here is my .htaccess now: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /site RewriteRule ...
0
votes
0answers
21 views

Mod_Rewrite Clean Blog URL

I have the following code for my site to do the following Redirect all users to www for consistency Hide the fact my website is in a subdomain Hide the PHP file extension RewriteEngine On #Change ...
1
vote
1answer
34 views

Htaccess parameter overwrite + allow additional params?

I have a rule in my .htaccess file to overwrite ugly parameter urls with clean paths. Here is an example: RewriteRule ^landing(/)?([0-9]+)?(/)?$ landing/index.php?intPage=$2 So when someone goes to ...
1
vote
1answer
89 views

How to setup site/domain controller for a requested dynamic page with Yii

I am working on a cms based Yii application. I have recently finished the pages of the backend and can now get the pages from a database. The trouble begins with getting the requested url and ...
0
votes
2answers
96 views

Docpad redirects to clean url without cleanurl plugin

When I run docpad run, the docpad server redirects links to files with an .html extension to the clean urls. At this point, I don't have the cleanurls plugin installed, but I used it earlier in the ...
0
votes
0answers
44 views

intelligencia.urlrewriter: bad request error

I want to implement url rewriting with intelligencia.urlrewriter.problem is when clean URL Contains special characters such as % : * & and more.in this case I get a bad request,because the cleaned ...
0
votes
1answer
41 views

Clean URL: Url redirecting 302 instead of showing it a clean URL

I am trying to create clean URL by editing the httpd.conf file but instead of getting clean URLs, my page is getting redirected to the dirty URL. Here is the condition that I am writing. RewriteRule ...
0
votes
1answer
146 views

Can we use httpd.conf instead of .htaccess for clean URL?

I have read that setting changes in httpd.conf are much better as compared to making changes in .htaccess as the later one is parsed at Runtime while .conf is parsed at the time of starting Apache. ...
0
votes
1answer
128 views

PHP creating slugify (clean URL) links in simple way? iconv malfunction?

I think this is the simplest way to slugify urls. You have any contra-indication? function url_clean($str) { $str = iconv('utf-8', 'us-ascii//TRANSLIT', $str); $clean_str = preg_replace(array( ...
1
vote
1answer
97 views

.htaccess how to force/automatic clean URL

I'm new to mod_rewrite but am trying my best to fix up my site with clean URLs. Using RewriteRule I can get it so you can type in a clean URl and get to the right page, but what I'm having trouble ...
1
vote
0answers
646 views

clean urls issue using .htaccess in php laravel project

I am working on a php laravel project. I am currently facing issues with .htaccess file. I have following .htaccess <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteBase / ...
1
vote
0answers
107 views

PHP clean url template with ajax

I'm having some issues how to build a website template with clean url's. I have the following files and directories in my root: .htaccess (redirects every call to a non-existing file or directory to ...
0
votes
1answer
92 views

htaccess clean-urls $_GET empty

I have the following url: ...
0
votes
2answers
138 views

.htaccess to enable loading of js and css files

i was enabling clean urls by editing .htacces with the following code RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([a-zA-Z0-9]+)/(.+)/$ ...
1
vote
1answer
62 views

301 Redirecting Dirty URLs to Clean Ones

I really need some help redirecting dirty URLs to clean ones. Dirty URL: creature.php?beast= Clean URL: /mythical-creature/ Currently my .htaccess looks like this: RewriteEngine On RewriteCond ...
1
vote
1answer
80 views

.htaccess rewrite for date i.e. /2012/12/31

I am trying to create some rewrite rules to organize content by date via URL in a short, readable way. i.e. http://mysite.com/post/index.php?a=Dave&b=2012&c=12&d=31&e=1 ...
0
votes
1answer
102 views

how to make clean url using htaccess for subdomain

for e.g. my domain is www.examples.com and subdomain is test2.examples.com I am using url variable to link pages. e.g.test2.examples.com/index.php?page=registers but I want clean url like ...
0
votes
2answers
64 views

Newly transferred Drupal site - Clean URL broken

I had a drupal site on my local wamp server but after having to reformat my computer and reinstalling wamp and all that, Clean URLS is messing up. I made sure my apache had mod_rewrite enabled and ...
0
votes
1answer
51 views

Clean Url does not work

My program is a web project in asp.net 2008 and I use urlrewriting Module to cleaning my URLs. For this,I only add some configuration settings in web.config and define some rules in web.config.then in ...
2
votes
2answers
2k views

How to structure Laravel .htaccess in order to point straight to public folder & remove index.php

I am attempting to create htaccess files that can be used on development and production server. The development server's folder structure is like this: Server Root (www) -laravel -public ...
1
vote
1answer
264 views

.htaccess refuses to redirect URLs without file extensions - straight to 404

So I've been tinkering. Apache's .htaccess was redirecting my WWW client just fine (if there is no WWW present, 301 to the same URL with a WWW included), and it was redirecting things with file ...
5
votes
1answer
188 views

single-page application with clean URLs without .htaccess file?

My question pertains specifically to the two pages below, but is also more generally relating to methods for using clean URLs without an .htaccess file. http://www.decitectural.com/ and ...
0
votes
3answers
229 views

PHP function to generate clean URL - apostrophes

I want to create clean URLs for my database site and I've decided that the best way is to create a field in which to store the URLs for their respective entries. I am using the GenerateUrl function ...
2
votes
1answer
254 views

Handling Two Query Strings with .htaccess

I'm trying to rewrite urls for a page that has two query strings parameter. And according to these parameters value (set or not), I show different contents on the page. ...
3
votes
2answers
85 views

A more efficient string cleaning Regex in PHP

Okay, I was hoping someone could help me with a little regex-fu. I am trying to clean up a string. Basically, I am: Replacing all characters except A-Za-z0-9 with a replacement. Replacing ...
0
votes
0answers
48 views

.htaccess redirect to one of two locations based on URL [closed]

So let's say I have website: http://www.blahblah.com I want it so that if they go to the root of the site (any of the following: http://www.blahblah.com, http://www.blahblah.com/, ...
0
votes
0answers
59 views

Return URL query parameters

Is there any way or tools that can return the get parameters from a clean URL? For example: www.website.com/cat/1 How this URL look like before clean it? UPDATE: Example The original URL before ...
0
votes
2answers
413 views

htaccess rewrite index.php on root and subfolders

I'm trying to redirect all requests to ./index.php?site=$1 while I only want to use the part behind the last slash. So I want www.mydomain.com/firstpage to become ...
0
votes
1answer
48 views

URL rewrite through an entry.php

I have two directory under my application directory my_app: .htaccess lib: entry.php web: css: css_file1 css_file2 js: js_file1 js_file2 My url will be ...
1
vote
2answers
88 views

clean url in php [duplicate]

Possible Duplicate: How to: URL re-writing in PHP? I want to pass a clean url through search form in index.php(mvc) ie: <form> <input type="text" name="search" ...
1
vote
1answer
86 views

nginx wordpress clean urls work in only some sub-sites

I currently use this setup (with a different root path) for another site on my nginx machine, for that site, this works correctly with clean urls. location ^~ /learn { root ...
1
vote
1answer
137 views

Creating slug with strtolower() and preg_replace() [duplicate]

Possible Duplicate: Regular Expression Sanitize (PHP) I want to make my links SEO. Before I started the links looked like this: http://www.domain.tld/index.php?page=blog My goal was to ...

1 2 3 4