GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   mod url rewrite expert needed (https://gfy.com/showthread.php?t=844600)

acctman 07-30-2008 07:27 AM

mod url rewrite expert needed
 
any mod rewrite experts on here? I'm trying to rewrite domain.com/view/USER.html to domain.com/USER and with trailing / this is the example I've been messing with RewriteRule ^/view\/(.*).html$ $1 [R] but no luck at getting it to work. below is my current rewrite

thanks in advance.

Code:

<IfModule mod_rewrite.c>
RewriteEngine On     
RewriteBase /

# force www   
RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
# end www
     
# start underscore -> dash conversion
RewriteRule !\.(html|php)$ - [S=4]
RewriteRule ^([^_]*)_([^_]*)_([^_]*)_([^_]*)_(.*)$ $1-$2-$3-$4-$5 [E=uscor:Yes]
RewriteRule ^([^_]*)_([^_]*)_([^_]*)_(.*)$ $1-$2-$3-$4 [E=uscor:Yes]
RewriteRule ^([^_]*)_([^_]*)_(.*)$ $1-$2-$3 [E=uscor:Yes]
RewriteRule ^([^_]*)_(.*)$ $1-$2 [E=uscor:Yes]
   
RewriteCond %{ENV:uscor} ^Yes$
RewriteRule (.*) http://www.domain.com/$1 [R=301,L]
# end underscore
   
RewriteCond %{REQUEST_FILENAME}  !-d
RewriteCond %{REQUEST_FILENAME}  !-f
RewriteRule ^(.*) index.php [L]
</IfModule>


AnniKN 07-30-2008 08:09 AM

Try this :) (Not an expert, just applied the few rules I know - worth a try *blush*

Code:

RewriteEngine On
RewriteRule ^([^/]*)/$ /view/$1.html [L]


tranza 07-30-2008 08:15 AM

What the...?

acctman 07-30-2008 09:15 AM

Quote:

Originally Posted by AnniKN (Post 14531043)
Try this :) (Not an expert, just applied the few rules I know - worth a try *blush*

Code:

RewriteEngine On
RewriteRule ^([^/]*)/$ /view/$1.html [L]


no luck, did not work.

dissipate 07-30-2008 09:24 AM

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^/view/(.*).html /$1

fris 07-30-2008 05:04 PM

thats a lot of messy code

MandyBlake 07-30-2008 05:14 PM

u work too hard man :)


All times are GMT -7. The time now is 08:00 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123