0

我不会试图隐藏我的网址。我只需要对我的客户表现得很好。我要屏蔽的 URL 是:mysite.com/group/2. 如果是这样就好了mysite.com/client。所以,每当我的客户点击他的 url 时mysite.com/client,后面的代码就会来自这个 url mysite.com/group/2,它group是一个模块(文件夹/源)并且2是一个主 ID。我尝试过使用 Rewrite mod/Apache(.htaccess),但没有成功。我怎样才能做到这一点?还有什么办法吗?谢谢

这是.htaccess

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On

# My Rewrite Rule
RewriteRule ^client$ group/2

# Get rid of index.php
RewriteCond %{REQUEST_URI} /index\.php
RewriteRule (.*) index.php?rewrite=2 [L,QSA]

# Rewrite all directory-looking urls
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*) index.php?rewrite=1 [L,QSA]

# Try to route missing files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} public\/ [OR]
RewriteCond %{REQUEST_FILENAME} \.(jpg|gif|png|ico|flv|htm|html|php|css|js)$
RewriteRule . - [L]

# If the file doesn't exist, rewrite to index
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]

</IfModule>

# sends requests /index.php/path/to/module/ to "index.php"
# AcceptPathInfo On

# @todo This may not be effective in some cases
FileETag Size

<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css                    application/x-javascript application/javascript
</IfModule>
4

1 回答 1

0

而不是在 mysite.com/group/2 中找到您的文件,而是尝试将您的文件放在这个目录中 mysite.com/client 在该目录中将您的代码写入 index.php 文件中,该文件处理您的代码是什么。这就是我在我的网站上为我的博客所做的

于 2013-05-04T16:30:17.893 回答