|
nickmars
| Joined: 02 May 2007 |
| Posts: 2 |
|
|
 |
|
|
|
|
Dating Software
Site Admin
| Joined: 30 Jul 2006 |
| Posts: 898 |
|
|
 |
Yes it can be set up in htaccess
|
|
|
|
paullas
| Joined: 03 Oct 2007 |
| Posts: 4 |
|
|
 |
please can you post what should be in the .htaccess to do the above please.
|
|
|
|
Dating Software
Site Admin
| Joined: 30 Jul 2006 |
| Posts: 898 |
|
|
 |
| paullas wrote: | | please can you post what should be in the .htaccess to do the above please. |
How do I make Short URL to member profiles? AbleDating includes a .htaccess with among a couple of other things , includes a rewrite rule for short URL access to member profiles. Ie : http://www.yourabdsite.com/users/username The provided rule didn't work for a start, there was an extra '/' in it. This is what should be used: RewriteEngine on RewriteRule ^users/([^\.]+)$ search_results.php?display=profile&name=$1 [R,L] RewriteCond /%{REQUEST_FILENAME} !-f m,mn RewriteRule ^(.+) http://www.yourabdsite.com/search_results.php?display=profile&name=$1 [R,L]
|
|
|
|
kalitk0
| Joined: 15 Mar 2008 |
| Posts: 1 |
|
|
 |
|
|
|
|
Dating Software
Site Admin
| Joined: 30 Jul 2006 |
| Posts: 898 |
|
|
 |
|
|
|