Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 337 Vote(s) - 3.51 Average
  • 1
  • 2
  • 3
  • 4
  • 5
.htaccess rewrite rule ,last query string is append to the url

#1
Hi i make one cms sites and i need to rewrite my url

current my url is

[To see links please register here]

it refers the *cmsLink*
I want my url like

[To see links please register here]

I am using the following code

Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteBase /
RewriteRule ^index.php?link=(.*)&cmsid=(.*)&cmsLink=(.*) $3

Reply

#2
Try changing your last rule to this:

RewriteRule ^(.+)$ /index.php?link=pages&cmsid=2&cmsLink=$1

Since you want to have url like

[To see links please register here]

, so `cmsid` and `link` in your url has to be hardcoded to `2` and `pages`.
Reply

#3
To achive this url it not directly possible with .htaccess
I use regular expression and other tings in htacess as well

I put remove the cmsid

current my url is

[To see links please register here]


RewriteCond %{REQUEST_URI} !/admin
RewriteCond %{REQUEST_URI} !^/(.*).php
RewriteBase /
RewriteRule ^([^/]+)/?$ index.php?link=pages&cmsLink=$1&%{QUERY_STRING} [L]

it return me

[To see links please register here]

Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through