我有 company.php?name=Son's.&.clothes 的 URL
当我使用.htaccess文件时,它应该像 company/Son's.&.clothes
$url = $pro->vendor_company; ///
$url = str_replace('&', '%26', $url);// Here i replaced & with %26
http://localhost/worldsindia/name/Jai%20Industries%20Ltd. // Then it looks like that
输出是
我在 PHP 中使用 GET 方法从 URL 获取名称:
if(isset($_GET['name'])){
$name = $_GET['name'];
}
var_dump($name);
Jai Industries Ltd.php
这是我的.htaccess文件
RewriteEngine On
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
## EXPIRES CACHING ##
#AddOutputFilterByType DEFLATE text/plain
#AddOutputFilterByType DEFLATE text/html
#AddOutputFilterByType DEFLATE text/xml
#AddOutputFilterByType DEFLATE text/css
#AddOutputFilterByType DEFLATE application/xml
#AddOutputFilterByType DEFLATE application/xhtml+xml
#AddOutputFilterByType DEFLATE application/rss+xml
#AddOutputFilterByType DEFLATE application/javascript
#AddOutputFilterByType DEFLATE application/x-javascript
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)/?$ $0.php [NC,L]
RewriteRule ^company/([A-Za-z0-9-\s&()+/.']+) company.php?name=$1 [NE,B,L]
$name 的输出就像 Son's
小唯快跑啊